https://github.com/shereef/semantic-gha-trigger-tag
A repo to help me diagnose the issue where smeantic-release is not triggering other workflows
https://github.com/shereef/semantic-gha-trigger-tag
Last synced: 4 months ago
JSON representation
A repo to help me diagnose the issue where smeantic-release is not triggering other workflows
- Host: GitHub
- URL: https://github.com/shereef/semantic-gha-trigger-tag
- Owner: Shereef
- Created: 2024-04-26T12:10:43.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-20T19:08:15.000Z (about 2 years ago)
- Last Synced: 2025-06-26T16:09:00.009Z (12 months ago)
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README

I am using the token above
I have also read [this discussion](https://github.com/semantic-release/semantic-release/discussions/1906)
# Solution
`[skip ci]` was being added by `@semantic-release/git`
the solutions is to replace it [like so]([url](https://github.com/Shereef/semantic-gha-trigger-tag/commit/39996f202cf6fa6c3fa14806062c6e2b39e739df)):
```
- "@semantic-release/git",
+ [
+ "@semantic-release/git",
+ {
+ "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
+ }
+ ],
```