Skip to content

Commit cd55342

Browse files
authored
🧳 [just] v4.3 - just release does git pull so you can see the tag locally (#49)
* 🧳 [just] v4.3 - just release does git pull so you can see the tag locally * release notes for v4.3
1 parent 5a43703 commit cd55342

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

‎.just/RELEASE_NOTES.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff 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

925
Added a standalone shell script to automate installation and verification of all

‎.just/gh-process.just‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sync:
1313
git pull
1414
git status --porcelain # stp
1515

16-
# PR create v4.2
16+
# PR create v4.3
1717
[group('Process')]
1818
pr: _has_commits && pr_checks
1919
#!/usr/bin/env bash
@@ -143,6 +143,8 @@ _on_a_pull_request: _on_a_branch
143143
[group('Process')]
144144
release 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')]

0 commit comments

Comments
 (0)