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
9 changes: 5 additions & 4 deletions .github/workflows/trigger_release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# One-click release. Actions tab -> "Trigger Release" -> "Run workflow" (on main).
#
# Delegates to the shared reusable workflow in helly25/bzl, which checks out this
# repo's main, verifies the version in MODULE.bazel and CHANGELOG.md is identical
# and neither tagged nor released, then runs tools/trigger_release.sh (push the
# signed tag -> release.yml -> GitHub release + BCR, and open the bump PR). The
# released version is whatever MODULE.bazel currently holds.
# repo's main, verifies the version in MODULE.bazel and CHANGELOG.md match and are
# neither tagged nor released, then cuts the release: pushes the signed tag
# (-> release.yml -> GitHub release + BCR) and opens, approves, and auto-merges
# the next-version bump PR. The released version is whatever MODULE.bazel holds.
#
# Requires the repo secrets RELEASE_TOKEN, RELEASE_GPG_PRIVATE_KEY and
# RELEASE_GPG_PASSPHRASE (passed through via `secrets: inherit`).
Expand All @@ -24,5 +24,6 @@ jobs:
trigger-release:
permissions:
contents: read
pull-requests: write
uses: helly25/bzl/.github/workflows/trigger_release.yaml@main
secrets: inherit
Loading