diff --git a/.github/workflows/broken-link-check.yml b/.github/workflows/broken-link-check.yml new file mode 100644 index 00000000..3d618dc8 --- /dev/null +++ b/.github/workflows/broken-link-check.yml @@ -0,0 +1,16 @@ +on: + schedule: + - cron: '12 1 * * 5' # run monthly + repository_dispatch: # run manually + types: [check-link] + # push: + # ... + +name: Broken Link Check +jobs: + check: + name: Broken Link Check + runs-on: ubuntu-latest + steps: + - name: Broken Link Check + uses: technote-space/broken-link-checker-action@v2 \ No newline at end of file