Fix Copilot code review setup and request review only once per PR (#144) #29
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: Zizmor Monitoring | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/workflows/**' | |
| - '.github/dependabot.yml' | |
| schedule: | |
| - cron: '0 11 * * 1' # Mondays at 11:00 UTC | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: false | |
| jobs: | |
| zizmor: | |
| name: Zizmor (monitoring) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| actions: read # needed for upload-sarif | |
| security-events: write # required to upload SARIF | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2 | |
| with: | |
| advanced-security: true | |
| persona: auditor | |
| min-severity: informational |