From ea783bbd201799e2d95184d649ab90b8d51e38fa Mon Sep 17 00:00:00 2001 From: Stanislav Cherviakov Date: Tue, 4 Mar 2025 10:10:48 +0000 Subject: [PATCH 1/2] chore: Clean cliff.toml --- cliff.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cliff.toml b/cliff.toml index 01d29d6e..de57c698 100644 --- a/cliff.toml +++ b/cliff.toml @@ -45,7 +45,7 @@ postprocessors = [ # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional -filter_unconventional = false +filter_unconventional = true # process each line of a commit as an individual commit split_commits = false # regex for parsing and grouping commits @@ -61,7 +61,7 @@ commit_parsers = [ { message = "^test(\\(.*\\))?:", group = "Testing" }, { message = "^chore\\(release\\):", skip = true }, { message = "^chore\\(deps\\)(\\(.*\\))?:", group = "Dependencies" }, - { message = "^chore(\\(.*\\))?:", group = "Miscellaneous Tasks" }, + { message = "^chore(\\(.*\\))?:", group = "Build Process & Auxiliary Tools" }, { message = "^ci(\\(.*\\))?:", group = "CI/CD" }, # Simple commits without scope @@ -75,10 +75,10 @@ commit_parsers = [ { message = "^MTG-\\d+\\s+.*(feat|feature)", group = "Features" }, { message = "^MTG-\\d+\\s+.*(doc|docs)", group = "Documentation" }, { message = "^MTG-\\d+\\s+.*(test)", group = "Testing" }, - { message = "^MTG-\\d+\\s+", group = "Tasks" }, + { message = "^MTG-\\d+\\s+", group = "Miscellaneous Tasks" }, ] # filter out the commits that are not matched by commit parsers -filter_commits = false +filter_commits = true # glob pattern for matching git tags tag_pattern = "v[0-9]*.[0-9]*.[0-9]*" # regex for skipping tags From 5abbd6a212136b63ba5a433dcabfe3dd8470134f Mon Sep 17 00:00:00 2001 From: Stanislav Cherviakov Date: Tue, 4 Mar 2025 10:17:06 +0000 Subject: [PATCH 2/2] fix(chore): Fix github PR creation in release prepare --- .github/workflows/release-prepare.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-prepare.yml b/.github/workflows/release-prepare.yml index e93465ab..0b000ccf 100644 --- a/.github/workflows/release-prepare.yml +++ b/.github/workflows/release-prepare.yml @@ -107,8 +107,7 @@ jobs: --base main \ --head ${{ env.RELEASE_BRANCH }} \ --title "Release v${{ inputs.version }}" \ - --body-file .changelog_content \ - --draft false + --body-file .changelog_content echo "Pull Request created. Please review the PR, make any necessary adjustments, and merge when ready."