bake-gem-github 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46cf12965bbeacaeb560e4ea719f9976543dca995fc1fde8a472ecb534327cd2
4
- data.tar.gz: 0c8f8748fd2ef7c93bd3e6dd4ea185165db0e24209c8b33a176b0a58d00b9b41
3
+ metadata.gz: 4f7557669b8ec839c193fbf060816c360413ba4be3cd8e223f294acb8e29baed
4
+ data.tar.gz: c4806b56446c74082b785e6f19ac8a36cfbe1cd79a07ba05eda3bcd223ceaeb8
5
5
  SHA512:
6
- metadata.gz: 0db75dbe12482f9f9c601d6f2f8e473832186de8a1609e17f94b9c4876f90234e6273a4cf0d4a4a003ad9457591bd1d00f6aacb7de0bc5cddf621e61c76c5307
7
- data.tar.gz: b0d57a706b49d95cccb9023efb014399c1039bc1a38528643e8aa7046516fe4341c2fdc9ac10d097a4429d23ecf7d19d6b5abdca5b3e048e3791eb80f9cda09d
6
+ metadata.gz: 522b233facca2afd17c28320ee34de988053bc33832a595c4e54ad34a308997813d54afaf43aa8a6c6b785b0a882b0f953aa5fecd7c4d004c0d4a21180d8f9b7
7
+ data.tar.gz: 7d4dbe694f2209d5a369c2e8100101a824b1cc0839023dd4a58976b9022154428c6e7e87ab8185b70f17e7913746f07bf4abdeabd4145c510ade5c3b8ba44ee3
checksums.yaml.gz.sig CHANGED
Binary file
@@ -26,6 +26,14 @@ def major(refresh: false)
26
26
  Bake::Gem::GitHub::Project.new(context.root).prepare(context, "major", refresh: refresh)
27
27
  end
28
28
 
29
+ # Regenerate release content and require one release commit; ordinary PRs pass without a commit limit.
30
+ # @parameter base [String] The current target commit.
31
+ # @parameter candidate [String] The proposed PR head.
32
+ # @returns [Hash | Nil] Release metadata, or nil for an ordinary PR.
33
+ def validate(base:, candidate: "HEAD")
34
+ Bake::Gem::GitHub::Project.new(context.root).validate(base: base, candidate: candidate)
35
+ end
36
+
29
37
  # Resolve and validate a pushed commit, emitting its merged PR and commit for publishing.
30
38
  # @parameter number [String | Nil] A merged PR number for older workflows; defaults to `RELEASE_PR`.
31
39
  # @parameter commit [String | Nil] The pushed commit SHA; defaults to `RELEASE_COMMIT` and takes precedence over `number`.
@@ -6,7 +6,7 @@ This guide explains how to configure reviewed Ruby gem releases and prepare the
6
6
 
7
7
  Maintainers prepare a release PR containing the version bump and generated release notes. CI regenerates those changes from the current base to verify the content. Native GitHub rules control approval and merging. A push to the default branch starts release inspection; GitHub Actions builds the exact pushed commit only when it is a validated, merged release PR, then publishes its verified artifact to RubyGems.
8
8
 
9
- `bake-gem` provides version updates, release hooks, and clean builds. `bake-gem-github` adds PR preparation, GitHub policy, and remote publishing. The supported process uses one gemspec, stable three-part versions, merge or squash merging, and RubyGems.org.
9
+ `bake-gem` provides version updates, release hooks, and clean builds. `bake-gem-github` adds PR preparation, GitHub policy, and remote publishing. The supported process uses one gemspec, stable three-part versions, single-commit release PRs, and RubyGems.org. Release PRs can be squash merged, rebase merged, or merged with a merge commit.
10
10
 
11
11
  ## Installation
12
12
 
@@ -90,7 +90,9 @@ bundle exec bake gem:github:setup:plan
90
90
  bundle exec bake gem:github:setup:apply
91
91
  ```
92
92
 
93
- Apply updates the four managed rulesets and, when configured, the existing environment's reviewer list. It preserves unrelated rulesets. Other repository and organization protections still apply. Keep check names in `config/release.yaml` synchronized with the workflows, and apply updated rules after renamed jobs are available. Keep rebase merging and merge queues disabled for this process.
93
+ Apply updates the four managed rulesets and, when configured, the existing environment's reviewer list. It preserves unrelated rulesets. Other repository and organization protections still apply. Keep check names in `config/release.yaml` synchronized with the workflows, and apply updated rules after renamed jobs are available.
94
+
95
+ The generated rules allow merge, squash, and rebase methods; repository settings determine which are available. For linear history, enable squash and/or rebase merging and disable merge commits in repository settings. Release validation requires exactly one commit when the version changes; ordinary PRs have no commit limit. Keep merge queues disabled for this process.
94
96
 
95
97
  ## Prepare the first release PR
96
98
 
@@ -115,13 +117,15 @@ git diff
115
117
 
116
118
  This updates managed files in the working tree and returns their changed paths. Review the diff and selectively retain repository customizations before committing. The task does not stage, commit, or change remote settings. Repeated updates produce no further changes unless customizations differ from the templates. Apply changed rulesets after the corresponding workflows are running.
117
119
 
120
+ To enable rebase merging on an existing installation, regenerate and merge `release-validate.yaml` so it runs `gem:github:release:validate`, which requires single-commit release PRs. Then review `gem:github:setup:plan` and run `gem:github:setup:apply` to allow rebase merging in the managed rules. Enable rebase merging in repository settings as well. Upgrading the gem alone does not update workflows or live rules.
121
+
118
122
  Regenerate existing workflows to adopt publishing on `push` instead of `pull_request_target`. The workflow filename and `rubygems` environment remain the same, so the RubyGems Trusted Publisher configuration does not change. No exception to GitHub's `pull_request_target` execution policy is needed. The resolve task continues to accept PR numbers from older workflows while you migrate.
119
123
 
120
124
  The release workflows follow `bake modernize` action versions and use moving major tags where available. The RubyGems credentials action uses its [documented `@main` reference](https://github.com/rubygems/configure-rubygems-credentials#trusted-publisher-recommended). Repositories that require fixed revisions can customize these references.
121
125
 
122
126
  ## Current scope
123
127
 
124
- The process has published `bake-gem-github` through GitHub Actions. Each adopting repository still needs its own reviewed setup and successful release. Public single-gem repositories, ordinary stable versions, merge/squash, GitHub-hosted Linux runners, and RubyGems.org are the supported starting point.
128
+ The process has published `bake-gem-github` through GitHub Actions. Each adopting repository still needs its own reviewed setup and successful release. Public single-gem repositories, ordinary stable versions, single-commit release PRs using squash/rebase/merge, GitHub-hosted Linux runners, and RubyGems.org are the supported starting point.
125
129
 
126
130
  Native build matrices, reusable publisher workflows, merge queues, automated RubyGems ownership/MFA setup, cross-run artifact recovery, and organization-wide migration are outside the current setup tasks.
127
131
 
@@ -19,11 +19,20 @@ gh workflow run release-prepare.yaml -f bump=patch
19
19
 
20
20
  Replace `patch` with `minor` or `major`. The wrapper fetches the default branch and tags, refuses a stale local checkout, and validates an existing release PR before returning its URL. A matching local or remote branch is reused if PR creation was interrupted. Multiple open release PRs or a different requested bump stop preparation. GitHub's built-in token may require a writer to approve running workflows for its created PR; enable Actions' permission to create PRs. An organization-owned App token can be adopted later if automatic CI triggering is needed.
21
21
 
22
- All release changes belong in the PR. Core preparation commits additions and deletions from release hooks but never pushes, tags or publishes. Validation independently generates the expected tree from the current base. A changed base SHA alone is fine; changed generated notes are not. Ordinary PRs with no version change pass release validation and still build unsigned.
22
+ All release changes belong in one commit, including the version bump and generated files. Core preparation commits additions and deletions from release hooks but never pushes, tags or publishes. Validation independently generates the expected tree from the current base and requires exactly one commit ahead of that base. A changed base SHA alone is fine; changed generated notes are not. Ordinary PRs with no version change have no commit limit and still build unsigned.
23
+
24
+ To run the same content and commit-count validation locally from a release branch:
25
+
26
+ ``` bash
27
+ git fetch origin main
28
+ bundle exec bake gem:github:release:validate base=origin/main
29
+ ```
30
+
31
+ Replace `main` with your configured default branch. When correcting a release, amend the existing commit or regenerate it with `refresh=true` instead of adding fixup commits. Amended content must still match the generated release; changes to release notes or generation hooks usually belong on the default branch followed by a refresh.
23
32
 
24
33
  ## Publish the merged release
25
34
 
26
- Merging into the configured default branch triggers `release-publish.yaml` through its `push` event. Inspection uses the exact pushed SHA and resolves its associated PR through GitHub. Publication requires one matching merged PR in this repository, targeting the configured branch, with that exact merge commit. Ordinary changes do not publish; release changes without a matching merged PR fail inspection. Both merge commits and squash merges are supported, including merged fork PRs.
35
+ Merging into the configured default branch triggers `release-publish.yaml` through its `push` event. Inspection uses the exact pushed SHA and resolves its associated PR through GitHub. Publication requires one matching merged PR in this repository, targeting the configured branch, with that exact resulting commit. Ordinary changes do not publish; release changes without a matching merged PR fail inspection. Single-commit release PRs support squash merging, rebase merging, and merge commits, including merged fork PRs. Publishing validates against the resulting commit's first parent, which is the default branch immediately before the release landed.
27
36
 
28
37
  Each release must land as the tip of its own push, as it does when merging a PR through GitHub. Later pushes do not change a pending release's source: inspection and publishing remain pinned to the original commit, and reruns use the same event. Do not combine a release and later changes into one direct push. If you automate merging, use a GitHub App or personal access token; pushes made using a workflow's `GITHUB_TOKEN` do not trigger another workflow.
29
38
 
@@ -45,4 +54,4 @@ bundle exec bake gem:github:release:patch refresh=true
45
54
  gh workflow run release-prepare.yaml -f bump=patch -f refresh=true
46
55
  ```
47
56
 
48
- Refresh first pushes the complete previous release commit to `release-backups/vVERSION/OLD_SHA`, including manual edits. It then regenerates in a clean worktree from the current default branch, validates, and updates the existing release branch using an explicit `--force-with-lease`. A concurrent remote edit causes the push to fail. Existing local release branches are left intact. Review the backup against the refreshed PR; incorporate necessary manual changes into the default branch or generation hooks and refresh again. Keep the backup until that review is complete. Replace `main` and `patch` with your configured branch and original bump type.
57
+ Refresh first pushes the complete previous release commit to `release-backups/vVERSION/OLD_SHA`, including manual edits. It then regenerates one release commit in a clean worktree from the current default branch, validates, and updates the existing release branch using an explicit `--force-with-lease`. A concurrent remote edit causes the push to fail. Existing local release branches are left intact. Review the backup against the refreshed PR; incorporate necessary manual changes into the default branch or generation hooks and refresh again. Keep the backup until that review is complete. Replace `main` and `patch` with your configured branch and original bump type.
@@ -6,7 +6,7 @@ Use this when checking a completed release or confirming which source commit pro
6
6
 
7
7
  ## What publishing verifies
8
8
 
9
- After merge/squash, the publishing workflow verifies GitHub's merged PR record and ancestry, then checks out the exact merged commit. Later development on the default branch is allowed. It regenerates against the merged commit's **first parent**, builds in a clean worktree, optionally certificate-signs, and creates two attestations over the final bytes:
9
+ After squash, rebase, or merge, the publishing workflow verifies GitHub's merged PR record and ancestry, then checks out the exact resulting commit. Each release PR contains one commit, so the resulting commit's **first parent** is the default branch immediately before the release landed. Later development on the default branch is allowed. Publishing regenerates against that first parent, builds in a clean worktree, optionally certificate-signs, and creates two attestations over the final bytes:
10
10
 
11
11
  - A Sigstore bundle submitted explicitly with `gem push --attestation` using RubyGems 4.0.21.
12
12
  - GitHub's native SLSA provenance covering both the gem and `release.json`. This signed receipt binds the gem digest to the exact release commit, even when the workflow's own default-branch revision is newer.
@@ -78,7 +78,7 @@ module Bake
78
78
  candidate = @release.resolve("HEAD")
79
79
  end
80
80
 
81
- metadata = @release.validate(base: base, candidate: candidate)
81
+ metadata = validate(base: base, candidate: candidate, optional: false)
82
82
  raise "Release branch does not contain the requested version #{version}." unless metadata.fetch(:version) == version
83
83
 
84
84
  push("--force-with-lease=#{release_ref}:#{remote_commit}", "#{candidate}:#{release_ref}")
@@ -90,6 +90,23 @@ module Bake
90
90
  )
91
91
  end
92
92
 
93
+ # Validate PR content and require each proposed release to contain exactly one commit.
94
+ # @parameter base [String] The current target commit.
95
+ # @parameter candidate [String] The proposed PR head.
96
+ # @parameter optional [Boolean] Accept ordinary PRs without a version change.
97
+ # @returns [Hash | Nil] Release metadata, or nil for an ordinary PR.
98
+ # @raises [RuntimeError] If the release content is invalid or the release contains multiple commits.
99
+ def validate(base:, candidate: "HEAD", optional: true)
100
+ metadata = @release.validate(base: base, candidate: candidate, optional: optional)
101
+ if metadata
102
+ range = "#{metadata.fetch(:base)}..#{metadata.fetch(:commit)}"
103
+ count = readlines("git", "rev-list", "--count", range, chdir: @root).join.strip
104
+ raise "Release PRs must contain exactly one commit. Amend or regenerate the release commit instead of adding commits." unless count == "1"
105
+ end
106
+
107
+ return metadata
108
+ end
109
+
93
110
  # Resolve a merged PR through GitHub, and require its actual merge commit in default-branch history.
94
111
  # @parameter number [String | Integer] The positive PR number.
95
112
  # @returns [Hash] GitHub PR data with string keys, including `number` and `merge_commit_sha`.
@@ -89,7 +89,7 @@ module Bake
89
89
  require_last_push_approval: true,
90
90
  required_review_thread_resolution: true,
91
91
  require_code_owner_review: false,
92
- allowed_merge_methods: ["merge", "squash"],
92
+ allowed_merge_methods: ["merge", "squash", "rebase"],
93
93
  },
94
94
  }],
95
95
  ),
@@ -9,7 +9,7 @@ module Bake
9
9
  module Gem
10
10
  # GitHub pull request and release orchestration for bake-gem.
11
11
  module GitHub
12
- VERSION = "0.4.0"
12
+ VERSION = "0.5.0"
13
13
  end
14
14
  end
15
15
  end
data/readme.md CHANGED
@@ -24,6 +24,10 @@ Please see the [project documentation](https://socketry.github.io/bake-gem-githu
24
24
 
25
25
  Please see the [project releases](https://socketry.github.io/bake-gem-github/releases/index) for all releases.
26
26
 
27
+ ### v0.5.0
28
+
29
+ - Support rebase merging by requiring each release PR to contain exactly one commit, while leaving ordinary PRs unrestricted. Generated rules allow merge, squash, and rebase methods according to repository settings.
30
+
27
31
  ### v0.4.0
28
32
 
29
33
  - Reject Secret environment reviewer teams before applying release settings, and verify that GitHub retained the requested reviewers and existing protections after updating the environment.
data/releases.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Releases
2
2
 
3
+ ## v0.5.0
4
+
5
+ - Support rebase merging by requiring each release PR to contain exactly one commit, while leaving ordinary PRs unrestricted. Generated rules allow merge, squash, and rebase methods according to repository settings.
6
+
3
7
  ## v0.4.0
4
8
 
5
9
  - Reject Secret environment reviewer teams before applying release settings, and verify that GitHub retained the requested reviewers and existing protections after updating the environment.
@@ -27,6 +27,6 @@ jobs:
27
27
  - name: Regenerate release content
28
28
  env:
29
29
  RELEASE_BASE: ${{ github.event.pull_request.base.sha }}
30
- run: bundle exec bake gem:release:validate "base=$RELEASE_BASE" optional=true
30
+ run: bundle exec bake gem:github:release:validate "base=$RELEASE_BASE"
31
31
  - name: Build unsigned package
32
32
  run: bundle exec bake gem:build signing_key=false
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-gem-github
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
metadata.gz.sig CHANGED
@@ -1,4 +1 @@
1
- C REDJX6C�����C0�5��5!�GNXyA2hxv4
2
- g|˒�ph%=�h݉�͒
3
- ��=P�C���x��HP@9��#�C*����CT��
4
- 06^��P��cg�l[�8nqGX^�Grdf �斉�C�v��0��?��wM=��>� ���H�[�b ����(g:&���-�6囀R�w� ��so#�yp(;
1
+ ���y0a�tq��ok��̤�ebَk��z�3�!�:ւ/�đ�U����кq�-�e���V��<ӽ�0[" n���xϼ�ڄd�eS_��;��J��1#����4 D��w0��P�t܁G)!�����ș?Ǔ[䱭&�^O@���wƁ}E�x��x����F�#U3w�.D2��ϒ\�,m����O��pV�u�!&�M]Z��4�}jv���s2����W�=I���~�|�RhE��5��LK��� �l^v���3ӏ�:�,&z-��MNs7���4 �X�թ��Fbrjst6P�����b�"���֝�S�D��h��I�@����+P�ߗ�