Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ permissions:
contents: write
pages: write

# Serialize deploys to gh-pages. Concurrent master pushes race the
# JamesIves force-push (cannot lock ref) — run 35056225053 failed at
# 2026-09-16T04:38Z while the next SHA's deploy succeeded 9s later.
# Do not cancel an in-progress master deploy; skip intermediate queued
# runs. Feature-branch builds may cancel superseded in-progress jobs.
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

jobs:
build-and-deploy:
name: Build and deploy (ruby-${{ matrix.ruby_version }})
Expand Down
Loading