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
parser.add_argument("-pr", "--use-pull-requests", type=str, help="Use pull requests to generate the changelog.", default="true")
37
+
parser.add_argument("-c", "--use-commits", type=str, help="Use commit messages to generate the changelog.", default="true")
40
38
parser.add_argument("--insert-position", type=str, help="The position to insert the changelog entry.", default="above_previous", choices=[position.valueforpositioninChangelogEntryPosition])
41
39
parser.add_argument("--commit-message", type=str, help="The commit message to use when updating the changelog.", default=Changelogger.COMMIT_MESSAGE)
42
40
43
-
parser.add_argument("-r", "--release", action="store_true", help="Generate a release changelog.", default=False)
44
-
parser.add_argument("--draft", action="store_true", help="Mark the release as a draft. Requires release is true", default=False)
45
-
parser.add_argument("--prerelease", action="store_true", help="Mark the release as a prerelease. Requires release is true", default=False)
41
+
parser.add_argument("-r", "--release", type=str, help="Generate a release changelog.", default="false")
42
+
parser.add_argument("--draft", type=str, help="Mark the release as a draft. Requires release is true", default="false")
43
+
parser.add_argument("--prerelease", type=str, help="Mark the release as a prerelease. Requires release is true", default="false")
46
44
47
45
parser.add_argument("--dry-run", action="store_true", help="Perform a dry run.", default=False)
0 commit comments