Skip to content

fix(ci): set cancel-in-progress: false for GitHub Pages deployment#1

Merged
hankerspace merged 2 commits into
mainfrom
copilot/fix-failing-github-actions-job
Jul 3, 2026
Merged

fix(ci): set cancel-in-progress: false for GitHub Pages deployment#1
hankerspace merged 2 commits into
mainfrom
copilot/fix-failing-github-actions-job

Conversation

Copilot AI commented Jul 3, 2026

Copy link
Copy Markdown
Contributor

The deploy job was failing with Deployment failed, try again later. from actions/deploy-pages@v4. A mid-flight cancellation (triggered on retry) left GitHub Pages in an error state, causing subsequent attempts to immediately fail at the status check.

Change

  • .github/workflows/deploy.yml: cancel-in-progress: truecancel-in-progress: false
concurrency:
  group: pages
  cancel-in-progress: false  # was: true

cancel-in-progress: false matches GitHub's official Pages workflow template — it queues new runs rather than killing active deployments, preventing the cascade failure.

Copilot AI changed the title [WIP] Fix failing GitHub Actions job deploy fix(ci): set cancel-in-progress: false for GitHub Pages deployment Jul 3, 2026
Copilot AI requested a review from hankerspace July 3, 2026 19:12
@hankerspace hankerspace marked this pull request as ready for review July 3, 2026 19:19
Copilot AI review requested due to automatic review settings July 3, 2026 19:19
@hankerspace hankerspace merged commit 99ddaf2 into main Jul 3, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

This PR adjusts the GitHub Pages deployment workflow’s concurrency behavior to prevent mid-deployment cancellations from leaving Pages in an error state and causing subsequent deployments to fail.

Changes:

  • Updated the Pages deployment workflow concurrency setting to queue runs instead of canceling in-progress deployments.

💡 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