Merge pull request #55 from mgifford/copilot/move-axe-details-next-to… #2
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: Scan GitHub Pages Accessibility | |
| on: | |
| schedule: | |
| # Run on the first day of every month at 09:00 UTC | |
| - cron: '0 9 1 * *' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| scan-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Scan GitHub Pages with axe-core | |
| uses: github/accessibility-scanner@v2 | |
| with: | |
| urls: | | |
| https://mgifford.github.io/daily-dap/ | |
| https://mgifford.github.io/daily-dap/reports/ | |
| repository: mgifford/daily-dap | |
| token: ${{ github.token }} | |
| cache_key: daily-dap-github-pages | |
| skip_copilot_assignment: true |