Merge branch 'plugin_api_v2' into add_submission_restriction #1880
Workflow file for this run
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: Check Links | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - 'plugins.json' | |
| pull_request: | |
| paths: | |
| - 'plugins.json' | |
| schedule: | |
| - cron: "0 */12 * * *" | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/[email protected] | |
| with: | |
| args: --verbose --no-progress plugins.json | |
| fail: true | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |