-
-
Notifications
You must be signed in to change notification settings - Fork 281
Add ability to run arbitrary hooks pre/post version bump #292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This is actually super interesting. I actually think that these hooks would be great candidates for plugins, as proposed in #287 |
I guess you're right, it does have some security implications when running arbitrary code is allowed. But I'd argue that the commands that are run are inherently documented in the config file (i.e. it's clear for every commit what scripts are going to be run) and that somewhat alleviates these implications. In a PoC that I'm preparing (just for myself, even if you'd decide not to merge it), I went for providing the arguments via environment variables, as it allows for more context to be passed to the script. Also I reduced the lists to a more simple syntax [tool.commitizen]
# ...
hooks_pre_changelog = [
"./update-something.sh",
"./do-another-thing.sh"
]
hooks_pre_bump = [
"./build-something-based-on-changelog.sh"
]
hooks_post_bump = [
"./push-artifacts.py"
] In case of the "pre-bump" hook I think these variables would be useful in the environment of the executed script/command: CZ_BUMP_IS_INITIAL=
CZ_BUMP_CURRENT_VERSION=
CZ_BUMP_CURRENT_TAG_VERSION=
CZ_BUMP_NEW_VERSION=
CZ_BUMP_NEW_TAG_VERSION=
CZ_BUMP_MESSAGE=
CZ_BUMP_INCREMENT=
CZ_BUMP_CHANGELOG_FILE_NAME= |
Hey @janw I'm interested. I'd like to see it. |
Awesome, I'll make it presentable early next week and get back to you! 💪 |
@janw did you ever find the time to make that PR? I'd love similar functionality as well! |
Hey, apologies @skoef, I ended up not finishing up the work after some personal business at the time, and the team ended up not needing the feature anymore after some time. But yeah, if somebody wants to implement this, feel free to re-use / claim this commit on my fork that has the initial work I did for it. |
To make commitizen integrate even better, new configuration keys hooks_pre_bump and hooks_post_bump were added to allow to run arbitrary commands prior to and right after running bump Closes: commitizen-tools#292
To make commitizen integrate even better, new configuration keys hooks_pre_bump and hooks_post_bump were added to allow to run arbitrary commands prior to and right after running bump Closes: commitizen-tools#292
To make commitizen integrate even better, new configuration keys hooks_pre_bump and hooks_post_bump were added to allow to run arbitrary commands prior to and right after running bump Closes: commitizen-tools#292
To make commitizen integrate even better, new configuration keys hooks_pre_bump and hooks_post_bump were added to allow to run arbitrary commands prior to and right after running bump Closes: commitizen-tools#292
To make commitizen integrate even better, new configuration keys hooks_pre_bump and hooks_post_bump were added to allow to run arbitrary commands prior to and right after running bump Closes: #292
To make commitizen integrate even better, new configuration keys pre_bump_hooks and post_bump_hooks were added to allow to run arbitrary commands prior to and right after running bump Closes: commitizen-tools#292
To make commitizen integrate even better, new configuration keys pre_bump_hooks and post_bump_hooks were added to allow to run arbitrary commands prior to and right after running bump Closes: #292
To make commitizen integrate even better, new configuration keys pre_bump_hooks and post_bump_hooks were added to allow to run arbitrary commands prior to and right after running bump Closes: #292
Description
To use the currently available hook facilities, it is necessary to create a custom cz_ adapter class to use hooks during the version bump / changelog generation. I'd like to be able to run arbitrary hooks (i.e. a shell script or other external executable) from a simple configuration file section. In my specific use-case I'd like for the hooks to be run after the changelog generation and before the version bump in case of
cz bump --changelog
(see also #290), but I can imaging the following hook locations to be useful:Possible Solution
Implement hook facilities at the aforementioned locations. They should be configurable via the configuration file for example as follows, allowing for multiple commands to be run at a given location
Given commands should run with useful execution context, such as current and future version as arguments and/or environment variables.
I'd be happy to implement this as well. Cheers.
The text was updated successfully, but these errors were encountered: