Add sofagent to Governance Frameworks #90
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: | |
| pull_request: | |
| paths: | |
| - "README.md" | |
| - "lychee.toml" | |
| schedule: | |
| # Weekly link-rot sweep, Mondays 06:00 UTC | |
| - cron: "0 6 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lychee: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Check README links | |
| uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0 | |
| with: | |
| args: --config lychee.toml README.md | |
| fail: true | |
| env: | |
| # Resolves GitHub links via the API: avoids rate-limit flakiness and | |
| # covers org repos that are private pre-launch. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |