Add DAUDIT to Additional resources β decision audit tool for product managers #1964
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: Link Checker | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| repository_dispatch: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "00 18 * * *" | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@master | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| with: | |
| args: --verbose --accept=200,429,403 --no-progress "**/*.md" | |
| - name: Create Issue From File | |
| if: always() && steps.lychee.outcome == 'failure' && github.event_name != 'pull_request' | |
| uses: peter-evans/create-issue-from-file@main | |
| with: | |
| title: Link Checker Report | |
| content-filepath: ./lychee/out.md | |
| labels: report, automated issue |