Skip to content

Commit

Permalink
chore: Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and Mcdostone committed Jan 18, 2025
1 parent 9f81694 commit 2532201
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,11 @@ jobs:
git push origin "changelog/v${{ needs.version.outputs.version }}" --force
- name: Create pull request for changelog
run: |
git pull
alreadyExists=$(gh pr list --json headRefName | jq '.[] | select(.headRefName == "changelog/v${{ needs.version.outputs.version }}") | any')
if [[ "$alreadyExists" == "" ]]; then
gh pr create --title "Changelog for ${{ needs.version.outputs.version }}" --body "This PR updates the changelog for version ${{ needs.version.outputs.version }}."
branch=$(git branch --show-current)
gh pr create --head "$branch" --title "Changelog for ${{ needs.version.outputs.version }}" --body "This PR updates the changelog for version ${{ needs.version.outputs.version }}."
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## What's Changed in v0.0.4
* Fix/user provided kafka properties by @Mcdostone in [#23](https://github.com/MAIF/yozefu/pull/23)
* ci: add cargo-deny by @Mcdostone
* feat: add a function `logs_file` that specifies a file to write logs to by @Mcdostone
* chore: Release version v0.0.4 by @Mcdostone
* build: update dependencies by @Mcdostone
* fix: user-provided kafka properties were not taken into account when creating the kafka client config by @Mcdostone
* ci: fix github action that creates changelog PR by @Mcdostone
* chore: Update changelog by @github-actions[bot] in [#20](https://github.com/MAIF/yozefu/pull/20)

**Full Changelog**: https://github.com/MAIF/yozefu/compare/v0.0.3...v0.0.4

## What's Changed in v0.0.3
* fix `KeyEvent` on windows by @Mcdostone in [#19](https://github.com/MAIF/yozefu/pull/19)
* test: snapshots tests for `KafkaRecord::parse` by @Mcdostone
Expand Down

0 comments on commit 2532201

Please sign in to comment.