forked from OpenCatalogi/opencatalogi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebc802a
commit 24f64c1
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
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
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"] | ||
} | ||
] | ||
} |