multi: reduce remaining alert noise #3504
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: Agent Docs Sync Check | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "*" | |
| merge_group: | |
| branches: | |
| - "master" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| # Cancel any previous workflows if they are from a PR or push. | |
| group: agent-docs-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| check-agent-docs-sync: | |
| name: Check CLAUDE.md and AGENTS.md are in sync | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v5 | |
| - name: Check agent docs sync | |
| run: ./.github/scripts/check-agent-docs-sync.sh |