Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4bec90f
feat: add prepare release workflow
leoweyr Mar 20, 2026
20daca8
feat: add publish release workflow
leoweyr Mar 20, 2026
047bf99
feat: add user-facing workflows
leoweyr Mar 20, 2026
e48851c
chore: move reusable workflows to src
leoweyr Mar 20, 2026
4b667a0
feat: add change log config
leoweyr Mar 20, 2026
7e15921
docs: update readme with usage instructions
leoweyr Mar 20, 2026
04e730f
chore: add icon
leoweyr Mar 20, 2026
e81214e
docs(readme): add banner
leoweyr Mar 20, 2026
2ad0a73
chore: correct eye perspective in icon
leoweyr Mar 20, 2026
0b0676e
fix: move reusable workflows back to .github/workflows directory
leoweyr Mar 20, 2026
456d0c9
fix: add missing reusable release workflows
leoweyr Mar 20, 2026
8d2afaa
fix: rename reserved GITHUB_TOKEN secret in reusable workflows
leoweyr Mar 20, 2026
7aef3e8
fix: correct git-cliff config path to prevent fallback to default
leoweyr Mar 20, 2026
dd5ada5
fix: ensure revert commits follow conventional format in changelog
leoweyr Mar 22, 2026
b912f9e
release: v1.0.0
github-actions[bot] Mar 20, 2026
1eaef1a
fix: prioritize revert commits parsing to prevent misclassification a…
leoweyr Mar 22, 2026
167d2d0
fix: use type field to correctly classify revert commits in change log
leoweyr Mar 22, 2026
026c69b
fix: preserve original type/scope in revert commit preprocessing
leoweyr Mar 22, 2026
5f388b2
fix(cliff): classify build commits under DevOps
leoweyr Mar 28, 2026
1c00f3d
ci: add update used by repos stats workflow
leoweyr Mar 29, 2026
4c3e192
ci: stabilize reusable workflow dependency search
leoweyr Mar 29, 2026
86c093b
feat: add tracker for reusable workflow usage
leoweyr Mar 29, 2026
80556c5
fix: make release base branch configurable via reusable workflow input
leoweyr Mar 29, 2026
66b12ff
release: v1.0.1
github-actions[bot] Mar 29, 2026
7191ff0
feat: support npm publish
leoweyr Apr 4, 2026
4c2b950
release: v1.1.0
github-actions[bot] Apr 4, 2026
6173ab3
fix: correct NPM_TOKEN gating output
leoweyr Apr 4, 2026
90eecbf
feat: support trb project node version bump
leoweyr Apr 4, 2026
7bf326f
fix(publish-release): align parameters in verify TRB inputs
leoweyr Apr 4, 2026
e9f7736
fix(publish-release): align TRB local action path with synced directory
leoweyr Apr 5, 2026
d2b7974
release: v1.2.0
github-actions[bot] Apr 5, 2026
9cf4a09
fix(prepare-release): filter for `v*` tags in release workflow
leoweyr Apr 23, 2026
666e8bd
release: v1.2.1
github-actions[bot] Apr 27, 2026
84c4ff1
Merge branch 'master' into release/v1.2.1
leoweyr Apr 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/reusable-prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
GITHUB_REPO: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
run: |
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --strip all > pr_body_raw.md
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --strip all --tag-pattern '^v[0-9].*' > pr_body_raw.md

- name: 📂 Save PR Body to File
run: |
Expand All @@ -87,10 +87,10 @@ jobs:
run: |
if [ -f "CHANGELOG.md" ]; then
# File exists: Prepend new changes (git-cliff intelligently handles headers).
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --prepend CHANGELOG.md
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --prepend CHANGELOG.md --tag-pattern '^v[0-9].*'
else
# File missing: Create new with full history and header.
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --output CHANGELOG.md
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --output CHANGELOG.md --tag-pattern '^v[0-9].*'
fi

- name: 🔄 Sync Commit and Push
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

# [1.2.1](https://github.com/leoweyr/github-release-workflow/compare/v1.2.0...v1.2.1) (2026-04-23)
### Bug Fixes

* **prepare-release:** filter for `v*` tags in release workflow ([9cf4a09](https://github.com/leoweyr/github-release-workflow/commit/9cf4a099c38eef14c1fbcbd61f3d023bf6ad2493)) [@leoweyr](https://github.com/leoweyr)



# [1.2.0](https://github.com/leoweyr/github-release-workflow/compare/v1.1.0...v1.2.0) (2026-04-05)
### Bug Fixes

Expand Down
2 changes: 2 additions & 0 deletions src/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ postprocessors = []


[git]
# pattern for matching git tags
tag_pattern = "^v[0-9].*"
conventional_commits = true
filter_unconventional = true
split_commits = false
Expand Down
Loading