feat(plugin-agent-orchestrator): add ack progress mode + dedupe spawn acks #25284
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: PR Title Check | |
| # Cancel previous runs for the same PR | |
| concurrency: | |
| group: pr-title-check-${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| # Default to least privilege. Override per-job where needed. | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-pr-title: | |
| runs-on: ubuntu-latest | |
| # The failure-path `gh pr comment` (GraphQL addComment) needs PR write; | |
| # the workflow-level default grants only contents: read, which made the | |
| # reporting step crash with "Resource not accessible by integration". | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 | |
| - name: Validate PR title | |
| id: validate | |
| run: | | |
| PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH") | |
| echo "PR Title: $PR_TITLE" | |
| if [[ ! "$PR_TITLE" =~ ^(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert|release)(\([a-zA-Z0-9-]+\))?:\ .+ ]]; then | |
| echo "PR title does not match the required pattern." | |
| exit 1 | |
| fi | |
| - name: Set status | |
| if: failure() | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh pr comment ${{ github.event.pull_request.number }} --body "❌ PR title does not match the required pattern. Please use one of these formats: | |
| - 'type: description' (e.g., 'feat: add new feature') | |
| - 'type(scope): description' (e.g., 'chore(core): update dependencies') | |
| Valid types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert, release" |