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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/bake/gem/github/release.rb +8 -0
- data/context/getting-started.md +7 -3
- data/context/preparing-releases.md +12 -3
- data/context/verifying-releases.md +1 -1
- data/lib/bake/gem/github/project.rb +18 -1
- data/lib/bake/gem/github/setup.rb +1 -1
- data/lib/bake/gem/github/version.rb +1 -1
- data/readme.md +4 -0
- data/releases.md +4 -0
- data/templates/release-validate.yaml.erb +1 -1
- data.tar.gz.sig +0 -0
- metadata +1 -1
- metadata.gz.sig +1 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f7557669b8ec839c193fbf060816c360413ba4be3cd8e223f294acb8e29baed
|
|
4
|
+
data.tar.gz: c4806b56446c74082b785e6f19ac8a36cfbe1cd79a07ba05eda3bcd223ceaeb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 522b233facca2afd17c28320ee34de988053bc33832a595c4e54ad34a308997813d54afaf43aa8a6c6b785b0a882b0f953aa5fecd7c4d004c0d4a21180d8f9b7
|
|
7
|
+
data.tar.gz: 7d4dbe694f2209d5a369c2e8100101a824b1cc0839023dd4a58976b9022154428c6e7e87ab8185b70f17e7913746f07bf4abdeabd4145c510ade5c3b8ba44ee3
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/bake/gem/github/release.rb
CHANGED
|
@@ -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`.
|
data/context/getting-started.md
CHANGED
|
@@ -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,
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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 =
|
|
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`.
|
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"
|
|
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
metadata.gz.sig
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
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
|
+
���y0�a�tq��ok��̤�ebَk��z�3�!�:ւ/�đ�U����кq�-�e���V��<ӽ�0["� n���xϼ�ڄd�eS_��;��J��1#����4 D��w�0��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-��MNs�7���4� �X�թ��Fbrjst6P�����b�"���֝�S�D��h��I�@����+P�ߗ�
|