ci: add GPG signing for release-please commits#1405
Merged
Conversation
Add crazy-max/ghaction-import-gpg to sign release-please commits, fixing merge blocks on repos requiring signed commits. Requires secrets: - GPG_PRIVATE_KEY: ASCII-armored GPG private key - GPG_PASSPHRASE: Key passphrase Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #1405 +/- ##
=====================================
Coverage 0.57% 0.57%
=====================================
Files 87 87
Lines 12523 12523
=====================================
Hits 72 72
Misses 12445 12445
Partials 6 6
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
windcbf
approved these changes
Jan 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix merge blocking on release-please PRs by adding GPG commit signing.
Problem
PR #1385 is blocked because release-please commits aren't GPG signed, but the repo requires signed commits.
Solution
Use crazy-max/ghaction-import-gpg to import a GPG key and configure git to sign commits before release-please runs.
Setup Required
Add these secrets to the repo:
GPG_PRIVATE_KEYgpg --armor --export-secret-key EMAIL)GPG_PASSPHRASEGenerate a bot GPG key (recommended)
After Merge
Once this is merged and secrets are configured, close and reopen PR #1385 (or push a new commit) to trigger a new release-please run with signed commits.
🤖 Generated with Claude Code