-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add workflow for creating a new release branch #417
Comments
Should the release branch not be a side effect of the release workflow when run for a minor release? |
Having a separate workflow would allow us to branch independently from releasing. Perhaps if we want to merge commits to master that we don't want to release in the next y-release (but aren't ready to release yet). Also, as the current release workflow stands, you release a branch (and not a commit) so if people are merging to master, there's no guarantee which commit gets branched/released. We could add a field though to specify a specific commit. |
The workflow needs to be run on master branch. It creates a new branch and also opens a PR against master branch with a minor version bump. fixes: pulp#417
The workflow needs to be run on master branch. It creates a new branch and also opens a PR against master branch with a minor version bump. fixes: pulp#417
So you are saying we might branch a week before releasing without holding the development on master. |
The workflow needs to be run on master branch. It creates a new branch and also opens a PR against master branch with a minor version bump. fixes: #417
The new workflow should triggered manually from master branch. It needs to take a name parameter. The workflow needs to check that the branch name matches up with the current version on master branch. If the name of the branch and the X.Y portion of the version string match, the workflow should create a new branch that is exactly like master and then bump the version on master and open a PR with that version bump.
The text was updated successfully, but these errors were encountered: