Master Link Check #635
This file contains hidden or 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: Master Link Check | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "30 18 * * *" # run at 00:00 AM IST | |
| jobs: | |
| paradox: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: coursier/setup-action@v1.2.0 | |
| with: | |
| jvm: temurin:1.21 | |
| - uses: coursier/cache-action@v6 | |
| - name: Paradox Validate Links | |
| run: sbtn docs/paradoxValidateLinks | |
| - name: Notify slack | |
| if: always() | |
| continue-on-error: true | |
| uses: kpritam/slack-job-status-action@v1 | |
| with: | |
| job-status: ${{ job.status }} | |
| slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
| channel: ci-linkcheck |