Skip to content

Serialize Azure MCP snapshot refresh workflow runs to prevent branch push races#1945

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/address-review-comment-1934
Draft

Serialize Azure MCP snapshot refresh workflow runs to prevent branch push races#1945
Copilot wants to merge 2 commits intomainfrom
copilot/address-review-comment-1934

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 17, 2026

The snapshot refresh workflow could run concurrently (manual dispatch + schedule) and both force-push to the same automation branch. This adds explicit workflow concurrency control so runs are serialized instead of racing.

  • Workflow orchestration

    • Added a workflow-level concurrency block to .github/workflows/refresh-azure-mcp-tool-snapshot.yml.
    • Uses a stable group key for this workflow and keeps cancel-in-progress: false so overlapping triggers queue rather than cancel.
  • Behavioral impact

    • Prevents simultaneous force-pushes to automation/refresh-azure-mcp-tool-snapshot.
    • Ensures deterministic updates/PR refreshes from this automation job.
concurrency:
  group: refresh-azure-mcp-tool-snapshot
  cancel-in-progress: false

Copilot AI linked an issue Apr 17, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Fix concurrency settings for Azure workflow Serialize Azure MCP snapshot refresh workflow runs to prevent branch push races Apr 17, 2026
Copilot AI requested a review from kvenkatrajan April 17, 2026 22:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Address review comment from on #1934

2 participants