From cd5ed7ae458baf878c5cf3bbb6c0e4ee83c532be Mon Sep 17 00:00:00 2001 From: Eduardo Aguilar Date: Fri, 17 May 2024 10:23:14 -0600 Subject: [PATCH 1/2] fix: missing import --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index d0f51ce..48ec95e 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,5 @@ +import core from "@actions/core"; + import { getInput, getBooleanInput } from "./src/utils.js"; import Action from "./src/action/Action.js"; From 74e845190dd85a9aaac219e0613dab4109c778a1 Mon Sep 17 00:00:00 2001 From: Eduardo Aguilar Date: Fri, 17 May 2024 10:24:31 -0600 Subject: [PATCH 2/2] ci: change bump --- .cz.toml | 15 +++++++++++++-- CHANGELOG.md | 51 --------------------------------------------------- 2 files changed, 13 insertions(+), 53 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/.cz.toml b/.cz.toml index 4530698..29c1534 100644 --- a/.cz.toml +++ b/.cz.toml @@ -4,7 +4,7 @@ name = "cz_customize" version = "0.4.1" tag_format = "v$version" bump_message = "bump: release $current_version → $new_version [skip-ci]" -update_changelog_on_bump = true +update_changelog_on_bump = false version_files = [ "package.json:version", ] @@ -12,4 +12,15 @@ version_files = [ [tool.commitizen.customize] schema_pattern = "(break|build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert|bump|deps)(\\(\\S+\\))?!?:(\\s.*)" bump_pattern = "^(break|build|feat|fix|refactor|style|test|revert|deps|docs|ci|chore)" -bump_map = {"break" = "MAJOR", "build" = "MINOR", "feat" = "MINOR", "revert" = "MINOR", "fix" = "PATCH", "refactor" = "PATCH", "style" = "PATCH", "test" = "PATCH", "ci" = "PATCH", "deps" = "PATCH", "chore" = "PATCH", "docs" = "PATCH"} + +[tool.commitizen.customize.bump_map] +break = "MAJOR" +build = "MINOR" +feat = "MINOR" +revert = "MINOR" +fix = "PATCH" +refactor = "PATCH" +style = "PATCH" +test = "PATCH" +deps = "PATCH" +chore = "PATCH" diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index f37cbcb..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,51 +0,0 @@ -## v0.4.1 (2024-05-17) - - -- fix: input default values (#8) - -## v0.4.0 (2024-04-17) - - -- bump: release 0.3.0 → 0.4.0 [skip-ci] -- feat: add build and publish in registry in relaese job (#7) -- * feat: add build and publish in registry in relaese job - -* feat: add default inputs values for booleans - -* feat: remove workflow_dispatch added for testing - -## v0.3.0 (2023-11-02) - - -- bump: release 0.2.0 → 0.3.0 [skip-ci] -- feat: add secret creation flag and flow (#6) - -## v0.2.0 (2023-11-01) - - -- bump: release 0.1.1 → 0.2.0 [skip-ci] -- feat: makeing prive all action properties (#5) -- Chore/add exclude flag (#4) -- * chore: add exclude option to skip sync keys - -* chore: save - -* chore: save - -* chore: add colors to log messages - -* chore: add configuration to show or hide secret values - -## v0.1.1 (2023-10-06) - - -- bump: release 0.1.0 → 0.1.1 [skip-ci] -- chore: add branding (#3) - -## v0.1.0 (2023-10-06) - - -- bump: release 0.0.0 → 0.1.0 [skip-ci] -- chore: add testings for new messages (#2) -- feat: add first version of the sync action (#1) -- Initial commit