feat(tui): add atomic tool output mode #43
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: Changelog gate | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: changelog-gate-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # User-facing PRs must ship a CHANGELOG [Unreleased] entry (or carry the | |
| # `no-changelog` label) so release archaeology stops catching missed entries. | |
| changelog-gate: | |
| name: Changelog gate | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e | |
| with: | |
| node-version: '24' | |
| - name: Check PR changelog | |
| run: node scripts/check-pr-changelog.mjs --base ${{ github.event.pull_request.base.sha }} --labels "${{ join(github.event.pull_request.labels.*.name, ',') }}" | |
| - name: Workflow summary | |
| if: always() | |
| shell: bash | |
| run: | | |
| { | |
| echo "## Changelog gate" | |
| echo "- Status: ${{ job.status }}" | |
| } >> "$GITHUB_STEP_SUMMARY" |