self-audit #49
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: self-audit | |
| # Dogfood: Upkeep audits its own repo on a schedule. | |
| # This is the drift safety net — it exercises docs_staleness multilingual-sync | |
| # detection against our own docs/<locale>/ and reviewers/<locale>/ trees, so when | |
| # the English base and its translations diverge, the audit surfaces it as a finding. | |
| on: | |
| schedule: | |
| - cron: '0 21 * * *' # 05:00 Asia/Taipei (UTC+8), staggered after Sudoku's 04:00 | |
| workflow_dispatch: | |
| jobs: | |
| audit: | |
| uses: ./.github/workflows/audit.yml | |
| permissions: | |
| contents: read | |
| issues: write | |
| id-token: write | |
| secrets: | |
| claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} |