File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ This file tracks the evolution of the Git/GitHub workflow automation module.
44
55## December 2025 - Finer refinements
66
7+ ### v4.3 - Release Tag Visibility
8+
9+ Enhanced the ` release ` recipe to automatically pull the newly created tag so it's
10+ immediately visible in your local repository. Previously, after running
11+ ` just release v1.2.3 ` , the tag would exist on GitHub but wouldn't show up in
12+ ` git tag ` locally until you manually ran ` git pull ` . Now the workflow handles
13+ this for you.
14+
15+ - Added ` git pull ` command after ` gh release create `
16+ - Included 1-second sleep to allow GitHub API to finish processing
17+ - Makes the release workflow feel more complete and immediate
18+
19+ This is a small quality-of-life improvement that removes a tiny paper cut from
20+ the release process. When you create a release, you should see it locally right
21+ away without extra steps.
22+
723### v4.2 - Prerequisites Installation Script (#48 )
824
925Added a standalone shell script to automate installation and verification of all
Original file line number Diff line number Diff line change 1313 git pull
1414 git status --porcelain # stp
1515
16- # PR create v4.2
16+ # PR create v4.3
1717[group (' Process' )]
1818pr : _has_commits && pr_checks
1919 #!/usr/bin/env bash
@@ -143,6 +143,8 @@ _on_a_pull_request: _on_a_branch
143143[group (' Process' )]
144144release rel_version :
145145 gh release create {{ rel_version}} --generate-notes
146+ sleep 1
147+ git pull
146148
147149# watch GHAs then check for Copilot suggestions
148150[group (' Process' )]
You can’t perform that action at this time.
0 commit comments