Add example CLI for audit log data retrieval #1574
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: Links Watcher | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| links-watcher: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout source code" | |
| uses: actions/checkout@v3 | |
| - name: Check Links in README | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v1.5.4 | |
| with: | |
| args: --verbose --no-progress --max-concurrency 2 --exclude-mail --exclude-loopback './**/*.md' | |
| output: ./lychee/out.md | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |