diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..c92c126 --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,18 @@ +on: + push: + branches: + - master + schedule: + # Run at 12:00 in working days + - cron: 0 12 * * 0-5 + +jobs: + build: + name: Validate links + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Validate links + uses: ad-m/report-link-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }}