From 87fcea8d25c31d42998f7e924f8825b10034d81b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20Kiiskil=C3=A4?= Date: Mon, 16 Dec 2024 10:49:43 +0200 Subject: [PATCH] PR - use re-usable misspell action This allows central configuration of versions used. --- .github/workflows/misspell.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml index 7643973..a6e6cc9 100644 --- a/.github/workflows/misspell.yml +++ b/.github/workflows/misspell.yml @@ -1,5 +1,7 @@ name: misspell -on: push +on: + push: + workflow_dispatch: # This allows a subsequently queued workflow run to interrupt previous runs concurrency: @@ -12,9 +14,7 @@ jobs: steps: - name: Check out code uses: actions/checkout@v4 - - name: Run misspell (findings may not increase) - if: always() - run: | - curl -L -o ./install-misspell.sh https://git.io/misspell - sh ./install-misspell.sh - bin/misspell -i mosquitto . + - name: Misspell + uses: PelionIoT/actions/.github/actions/misspell@main + with: + exceptions: "mosquitto"