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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -411,6 +411,7 @@ The Release Drafter GitHub Action accepts a number of optional inputs directly i
411
411
| `publish` | A boolean indicating whether the release being created or updated should be immediately published. This may be useful if the output of a previous workflow step determines that a new version of your project has been (or will be) released, as with [`salsify/action-detect-and-tag-new-version`](https://github.com/salsify/action-detect-and-tag-new-version). |
412
412
| `prerelease` | Whether to draft a prerelease, with changes since another prerelease (if applicable). Default `false`. |
413
413
| `prerelease-identifier` | A string indicating an identifier (alpha, beta, rc, etc), to increment the prerelease version. This automatically enables `prerelease` if not already set to `true`. Default `''`. |
414
+
| `include-pre-releases` | When looking for the last published release to scan changes up-to, include pre-releases. Has no effect if using `prerelease: true` (already enabled). Default `false`. |
414
415
| `latest` | A string indicating whether the release being created or updated should be marked as latest. |
415
416
| `commitish` | A string specifying the target branch for the release being created. |
416
417
| `header` | A string that would be added before the template body. |
Copy file name to clipboardExpand all lines: action.yml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,12 +40,17 @@ inputs:
40
40
default: ''
41
41
prerelease:
42
42
description: |
43
-
A boolean indicating whether the release being created or updated is a prerelease.
43
+
Whether to draft a prerelease, with changes since another prerelease (if applicable).
44
44
required: false
45
45
default: ''
46
46
prerelease-identifier:
47
47
description: |
48
-
A string indicating an identifier (alpha, beta, rc, etc), to increment the prerelease version.
48
+
A string indicating an identifier (alpha, beta, rc, etc), to increment the prerelease version. This automatically enables `prerelease` if not already set to `true`.
49
+
required: false
50
+
default: ''
51
+
include-pre-releases:
52
+
description: |
53
+
When looking for the last published release to scan changes up-to, include pre-releases. Has no effect if using `prerelease: true` (already enabled).
0 commit comments