docs(prompt): require stripping platform attribution from PR bodies #19
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: CI | |
| # Run the test suite only when changes land on main (a merged PR or a direct | |
| # push). Tests intentionally do NOT run on pull requests — see ADR-027 for the | |
| # trigger policy and its post-merge-feedback tradeoff. workflow_dispatch allows | |
| # running the full battery grid manually (e.g. to check a branch before merge). | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| # Serialize runs on the same ref. Don't cancel an in-progress run: every merge | |
| # to main should be fully tested, since these runs are what gate releases. | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| tests: | |
| uses: ./.github/workflows/tests.yml |