Skip to content

Commit edf6c4d

Browse files
authored
fix: update commit message for release commits (#55)
Simplifies the skip actions implementation by using [skip actions] directly in the commit message instead of skip-checks in the commit body.
1 parent 9ed729d commit edf6c4d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.changeset/update-dependencies.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'agentic-node-ts-starter': patch
3+
---
4+
5+
Update dependencies to latest versions
6+
7+
- zod: 4.1.1 → 4.1.4
8+
- @typescript-eslint/eslint-plugin: 8.40.0 → 8.41.0
9+
- @typescript-eslint/parser: 8.40.0 → 8.41.0

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ jobs:
7676
git config --local user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
7777
git config --local user.name "${{ github.actor }}"
7878
git add package.json CHANGELOG.md .changeset
79-
git commit --cleanup=verbatim -m "chore(release): v${{ steps.version.outputs.version }}
80-
81-
skip-checks: true"
79+
git commit -m "chore(release): v${{ steps.version.outputs.version }} [skip actions]"
8280
git tag -a "v${{ steps.version.outputs.version }}" -m "Release v${{ steps.version.outputs.version }}"
8381
git push origin main --follow-tags
8482

0 commit comments

Comments
 (0)