Master Link Check #859
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: Master Link Check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 22 * * *" # run at 04:00 AM IST | |
jobs: | |
paradox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.17 | |
- uses: coursier/cache-action@v6 | |
- name: Paradox Validate Links | |
run: sbtn 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 |