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
description: Control whether to automatically delete the prerelease tags after the stable release is created.
18
25
required: false
19
26
default: 'true'
20
-
AutoPatching:
21
-
description: Control whether to automatically handle patches. If disabled, the action will only create a patch release if the pull request has a 'patch' label.
22
-
required: false
23
-
default: 'true'
24
-
IncrementalPrerelease:
25
-
description: Control whether to automatically increment the prerelease number. If disabled, the action will ensure only one prerelease exists for a given branch.
26
-
required: false
27
-
default: 'true'
28
-
DatePrereleaseFormat:
29
-
description: If specified, uses a date based prerelease scheme. The format should be a valid .NET format string like 'yyyyMMddHHmm'.
30
-
required: false
31
-
default: ''
32
-
VersionPrefix:
33
-
description: The prefix to use for the version number.
34
-
required: false
35
-
default: v
36
-
MajorLabels:
37
-
description: A comma separated list of labels that trigger a major release.
38
-
required: false
39
-
default: major, breaking
40
-
MinorLabels:
41
-
description: A comma separated list of labels that trigger a minor release.
42
-
required: false
43
-
default: minor, feature
44
-
PatchLabels:
45
-
description: A comma separated list of labels that trigger a patch release.
46
-
required: false
47
-
default: patch, fix
48
-
IgnoreLabels:
49
-
description: A comma separated list of labels that do not trigger a release.
50
-
required: false
51
-
default: NoRelease
52
-
ReleaseType:
53
-
description: The type of release to create. Values are 'Release' (stable), 'Prerelease', or 'None'.
54
-
required: false
55
-
default: Release
56
27
WhatIf:
57
28
description: If specified, the action will only log the changes it would make, but will not actually create or delete any releases or tags.
0 commit comments