Verified Commits from Github Actions #4061
Unanswered
vince-vibin
asked this question in
Configuration
Replies: 1 comment 1 reply
-
our recommendation is to avoid the complexity of making commits in the first place. is that an option for you? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
i'm trying to create a signed (verified) commit from a GitHub Actions workflow. I'm running semantic-release and using the repository token, but the commits pushed by the action are not shown as "Verified."
Ideally:
Below are my current .releaserc and the workflow step I'm running (I can share them if needed). Thank you!
This is my releaserc:
{ "branches": [ "main", { "name": "your-branch-name", "prerelease": "snapshot" } ], "plugins": [ "@semantic-release/commit-analyzer", [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "issueUrlFormat ": "https://some-jira.de/jira/browse/{{id}}" } } ], "@semantic-release/changelog", [ "@semantic-release/git", { "assets": [ "CHANGELOG.md" ] } ], [ "@semantic-release/npm", { "pkgRoot": "node-dist" } ], "@semantic-release/github" ] }and this is my Github Action
But this does not lead to a verified commit

Do you guys have a better idea on how to do that?
Thank you very much :)
EDIT: improved writing
Beta Was this translation helpful? Give feedback.
All reactions