diff --git a/.github/workflows/broken-links.yml b/.github/workflows/broken-links.yml index 4df8fa4a..b8cd8d6e 100644 --- a/.github/workflows/broken-links.yml +++ b/.github/workflows/broken-links.yml @@ -1,20 +1,20 @@ + +name: Broken Link Check + on: - push: - branches: - - '**' # Trigger on commits to any branch - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - - name: Broken Link Check - jobs: - check: - name: Broken Link Check - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Broken Link Check - uses: technote-space/broken-link-checker-action@gh-actions \ No newline at end of file + push: + branches: + - '**' # Trigger on commits to any branch + workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + +jobs: + check: + name: Broken Link Check + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - name: Broken Link Check + uses: technote-space/broken-link-checker-action@gh-actions \ No newline at end of file