changes tool update file #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Broken Link Check | |
on: | |
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 |