You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,10 @@ jobs:
42
42
- **release_branches** _(optional)_ - Comma separated list of branches (JavaScript regular expression accepted) that will generate the release tags. Other branches and pull-requests generate versions postfixed with the commit hash and do not generate any repository tag. Examples: `master` or `.*` or `release.*,hotfix.*,master`... (default: `master,main`).
43
43
- **pre_release_branches** _(optional)_ - Comma separated list of branches (JavaScript regular expression accepted) that will generate the pre-release tags.
44
44
45
+
#### Filter commits
46
+
47
+
- **scopes** _(optional)_ - Comma separated list of scopes (JavaScript regular expression accepted) to consider when tagging, and to include in the changelog. If this option is specified, then commits with scopes not matching this list will not be analyzed nor included in the changelog.
48
+
45
49
#### Customize the tag
46
50
47
51
- **default_bump** _(optional)_ - Which type of bump to use when [none is explicitly provided](#bumping) when commiting to a release branch (default: `patch`). You can also set `false` to avoid generating a new tag when none is explicitly provided. Can be `patch, minor or major`.
Copy file name to clipboardExpand all lines: action.yml
+3
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,9 @@ inputs:
44
44
pre_release_branches:
45
45
description: "Comma separated list of branches (bash reg exp accepted) that will generate pre-release tags."
46
46
required: false
47
+
scopes:
48
+
description: "Comma separated list of scopes (bash reg exp accepted) to analyze and to include in the changelog."
49
+
required: false
47
50
commit_sha:
48
51
description: "The commit SHA value to add the tag. If specified, it uses this value instead GITHUB_SHA. It could be useful when a previous step merged a branch into github.ref."
0 commit comments