Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [main]
branches: [main, release/*]
pull_request:

# Cancel superseded runs for the same ref.
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Release

# Auto-publish on merge: when a version bump lands on `main`, create the matching
# `vX.Y.Z` tag and GitHub release with notes from CHANGELOG.md. Idempotent —
# `release.py publish` is a no-op when the tag already exists, so merges that
# don't bump the version do nothing.
# Auto-publish on merge: when a version bump lands on `main` or a `release/*`
# maintenance branch, create the matching `vX.Y.Z` tag and GitHub release with
# notes from CHANGELOG.md. Idempotent — `release.py publish` is a no-op when the
# tag already exists, so merges that don't bump the version do nothing, and
# whichever branch carries a given version first wins the tag.
on:
push:
branches: [main]
branches: [main, release/*]

concurrency:
group: release-${{ github.ref }}
Expand Down