Skip to content

Commit

Permalink
:'''(
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Aug 16, 2024
1 parent ebc802a commit 24f64c1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Run Changelog CI
uses: saadmk11/[email protected]
with:
release_version: steps.version.outputs.version
release_version: ${{ steps.version.outputs.version }}
config_file: changelog-ci-config.json

- name: Commit and push updated info.xml and changelog.md
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add apinfo/info.xml
git add changelog.md
git commit -m "Update version and summary in info.xml to ${{ steps.version.outputs.version }}"
git push origin ${{ github.head_ref }}
Expand Down
23 changes: 23 additions & 0 deletions changelog-ci-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"changelog_type": "commit_message",
"commit_changelog": true,
"exclude_labels": ["bot", "dependabot", "ci"],
"group_config": [
{
"title": "Bug Fixes",
"labels": ["bug", "bugfix"]
},
{
"title": "Code Improvements",
"labels": ["improvements", "enhancement"]
},
{
"title": "New Features",
"labels": ["feature"]
},
{
"title": "Documentation Updates",
"labels": ["docs", "documentation", "doc"]
}
]
}

0 comments on commit 24f64c1

Please sign in to comment.