Unverified Commit 26234f0d authored by Gzp_'s avatar Gzp_ Committed by GitHub
Browse files

Merge pull request #11 from TNK-Studio/dev

chore: add changelog ci
Showing with 43 additions and 0 deletions
+43 -0
name: Changelog CI
on:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- name: Run Changelog CI
uses: saadmk11/changelog-ci@v0.7.0
with:
changelog_filename: CHANGELOG.md
config_file: .github/workflows/config/changelog-ci-config.json
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
{
"header_prefix": "Version:",
"commit_changelog": false,
"comment_changelog": true,
"pull_request_title_regex": "^(?i:release)",
"version_regex": "v?([0-9]{1,2})+[.]+([0-9]{1,2})+[.]+([0-9]{1,2})\\s\\(\\d{1,2}-\\d{1,2}-\\d{4}\\)",
"group_config": [
{
"title": "Bug Fixes",
"labels": ["bug", "bugfix"]
},
{
"title": "Code Improvements",
"labels": ["improvements", "enhancement"]
},
{
"title": "New Features",
"labels": ["feature", "feature request"]
},
{
"title": "Documentation Updates",
"labels": ["docs", "documentation", "doc"]
}
]
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment