From 16c71e0e55f2ae56453e5233631658c00f576353 Mon Sep 17 00:00:00 2001 From: Exelo Date: Thu, 4 Jun 2026 10:05:26 +0900 Subject: [PATCH] fix: change sync docs defaults and release tag patterns --- .cliff-jumperrc.json | 1 + actions/synchronize-docs/action.yml | 4 ++-- cliff.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.cliff-jumperrc.json b/.cliff-jumperrc.json index 21c2028..bc16d70 100644 --- a/.cliff-jumperrc.json +++ b/.cliff-jumperrc.json @@ -3,5 +3,6 @@ "name": "actions", "org": "nanoforge-dev", "packagePath": ".", + "tagTemplate": "{{new-version}}", "identifierBase": false } diff --git a/actions/synchronize-docs/action.yml b/actions/synchronize-docs/action.yml index a2732a6..5a6faa4 100644 --- a/actions/synchronize-docs/action.yml +++ b/actions/synchronize-docs/action.yml @@ -3,10 +3,10 @@ description: "Synchronize docs for a repository" inputs: src-path: description: "Path to the repository directory" - default: "src" + default: "." docs-path: description: "Path to the docs repository directory" - default: "docs" + default: "docs-dist" category: description: "Category of the repository (bases are `engine`, `cli` and `editor`)" required: true diff --git a/cliff.toml b/cliff.toml index 6c93979..4297ea2 100644 --- a/cliff.toml +++ b/cliff.toml @@ -69,7 +69,7 @@ commit_parsers = [ ] filter_commits = true protect_breaking_commits = true -tag_pattern = "@nanoforge-dev/actions@[0-9]*" +tag_pattern = "^[0-9]+" ignore_tags = "" topo_order = false sort_commits = "newest"