Support creating tags as a different user#33
Merged
haya14busa merged 1 commit intohaya14busa:masterfrom May 2, 2022
Merged
Conversation
- Add a `tag_as_user` input to override the git `user.name` used when creating tags - Add a `tag_as_email` input to override the git `user.email` used when creating tags - If a `github_token` has been provided, use that when pushing tags instead of the default Actions token Using a different token for pushing the the tag allows the push to trigger other Actions.
Contributor
|
🚀 [bumpr] Bumped! New version:v1.8.0 Changes:v1.7.2...v1.8.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
tag_as_userinput to override the gituser.nameused when creating tagstag_as_emailinput to override the gituser.emailused when creating tagsgithub_tokenhas been provided, use that when pushing tags instead of the default Actions tokenGitHub Actions won't be triggered for things that use the GITHUB_TOKEN that is automatically generated for each action run - this is to prevent infinite loops. Using a different token for pushing the the tag allows the push to trigger other Actions.