-
Notifications
You must be signed in to change notification settings - Fork 1
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
Adapt poetry release workflow for new changelog action #214
Merged
Conversation
This file contains 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
DerTiedemann
requested review from
yannick-roeder and
yordanovsstoyan
as code owners
November 6, 2024 00:36
This was referenced Nov 6, 2024
yannick-roeder
approved these changes
Nov 6, 2024
DerTiedemann
added a commit
to bakdata/template-python-poetry
that referenced
this pull request
Nov 7, 2024
DerTiedemann
added a commit
that referenced
this pull request
Nov 13, 2024
New changelog generator: https://git-cliff.org/ This action updated replaces the previous generator with the aforementioned tool. All existing functionality has been preserved and some new things have been added, most notably the first contribution mention. The action will check of there is a `cliff.toml` present in the current repo and if not use the default that is present inside of this repo. Custom configs are sometimes required to filter out commits that dont contain meaningful changes like version bumps. An example of how this could look for streams-bootstrap: ```toml commit_parsers = [ { message = "^\\[Gradle Release Plugin\\]", skip = true }, { message = "^Changelog for version .*", skip = true }, ] ``` Which turns changelogs that look like this: 2024-06-12 * [Gradle Release Plugin] - new version commit: '2.22.2-SNAPSHOT'. by @bakdata-bot * Changelog for version 2.22.1 by @bakdata-bot * Add dynamic application.server config to streams app chart by @philipp94831 in [#214](bakdata/streams-bootstrap#214) * [Gradle Release Plugin] - pre tag commit: '2.23.0'. by @bakdata-bot **Full Changelog**: bakdata/streams-bootstrap@2.22.1...2.23.0 into this: 2024-06-12 * Add dynamic application.server config to streams app chart by @philipp94831 in [#214](bakdata/streams-bootstrap#214) **Full Changelog**: bakdata/streams-bootstrap@2.22.1...2.23.0 <hr> For more config options have a look at the docs, this thing is pretty powerful. Let me know what you think.
DerTiedemann
added a commit
that referenced
this pull request
Nov 13, 2024
DerTiedemann
added a commit
that referenced
this pull request
Nov 13, 2024
New changelog generator: https://git-cliff.org/ This action updated replaces the previous generator with the aforementioned tool. All existing functionality has been preserved and some new things have been added, most notably the first contribution mention. The action will check of there is a `cliff.toml` present in the current repo and if not use the default that is present inside of this repo. Custom configs are sometimes required to filter out commits that dont contain meaningful changes like version bumps. An example of how this could look for streams-bootstrap: ```toml # ommited commit_parsers = [ { message = "^\\[Gradle Release Plugin\\]", skip = true }, { message = "^Changelog for version .*", skip = true }, ] ``` Which turns changelogs that look like this: ## [2.23.0](https://github.com/bakdata/streams-bootstrap/tree/2.23.0) - 2024-06-12 ### What's changed * [Gradle Release Plugin] - new version commit: '2.22.2-SNAPSHOT'. by @bakdata-bot * Changelog for version 2.22.1 by @bakdata-bot * Add dynamic application.server config to streams app chart by @philipp94831 in [#214](bakdata/streams-bootstrap#214) * [Gradle Release Plugin] - pre tag commit: '2.23.0'. by @bakdata-bot **Full Changelog**: bakdata/streams-bootstrap@2.22.1...2.23.0 into this: ## [2.23.0](https://github.com/bakdata/streams-bootstrap/tree/2.23.0) - 2024-06-12 ### What's changed * Add dynamic application.server config to streams app chart by @philipp94831 in [#214](bakdata/streams-bootstrap#214) **Full Changelog**: bakdata/streams-bootstrap@2.22.1...2.23.0 <hr> For more config options have a look at the docs, this thing is pretty powerful. Let me know what you think.
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.
No description provided.