-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(main): add options to configure scope related behaviour
- DEFAULT_SCOPE: lets the user define a scope under which all un-scoped commits can be found (defaults to general). - SUPPRESS_UNSCOPED: can be used to have a pre-bugfix-behaviour in which all unscoped commits will get ignored.
- Loading branch information
Showing
4 changed files
with
35 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,14 @@ inputs: | |
description: "The name and email of the committer. e.g. 'author <[email protected]>'" | ||
required: false | ||
default: '' | ||
DEFAULT_SCOPE: | ||
description: "The scope under which unscoped commits can be found e.g. 'fix: some general fix'" | ||
required: false | ||
default: 'general' | ||
SUPPRESS_UNSCOPED: | ||
description: "Suppress the generation of release notes for un-scoped commits e.g. 'fix: some general fix'" | ||
required: false | ||
default: 'false' | ||
runs: | ||
using: "docker" | ||
image: "Dockerfile" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.