Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/advance-deploy-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ on:

jobs:
advance:
# A branch CREATION or deletion is not a merge — its commits are inherited,
# not newly shipped. Without this guard, creating a branch (BEFORE = zero
# hash) falls through to the "last 50 commits" range below and mass-advances
# ~50 recent PRs' kanban items — e.g. every time a new `staging` branch is
# cut for a repo (RFC-BACKEND-0008 D8/#1274). Skip create/delete pushes.
if: github.event.created != true && github.event.deleted != true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading