Skip to content

fix: prevent GitHub Pages deploy cancellation on concurrent workflow runs#150

Merged
DavidKRK merged 1 commit into
gh-pagesfrom
copilot/update-readme-with-new-info
Apr 4, 2026
Merged

fix: prevent GitHub Pages deploy cancellation on concurrent workflow runs#150
DavidKRK merged 1 commit into
gh-pagesfrom
copilot/update-readme-with-new-info

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 4, 2026

With cancel-in-progress: true, any new push to gh-pages while a deployment was in-flight would cancel the active deploy-pages job mid-execution, surfacing as a failed check. The deploy job for commit c679ec7d was cancelled after ~7 minutes of polling GitHub Pages deployment status with no response.

Change

  • deploy.yml: concurrency.cancel-in-progress: truefalse
concurrency:
  group: "pages"
  cancel-in-progress: false  # was: true

Deployments now queue rather than cancel, which is the correct semantics for a Pages deploy — there's no benefit to aborting a deployment already submitted to the Pages infrastructure.

…tive deployments from being cancelled

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/20c8a8df-3239-4343-8a3c-b04e91465915

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>
@bolt-new-by-stackblitz
Copy link
Copy Markdown

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@DavidKRK DavidKRK marked this pull request as ready for review April 4, 2026 05:59
Copilot AI review requested due to automatic review settings April 4, 2026 05:59
@DavidKRK DavidKRK merged commit bed0cc8 into gh-pages Apr 4, 2026
10 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adjusts GitHub Actions workflow concurrency settings so GitHub Pages deployments are queued instead of being cancelled by newer workflow runs.

Changes:

  • Updated the Pages deployment workflow concurrency to set cancel-in-progress: false for the pages concurrency group.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

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.

3 participants