We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78fe128 commit 5087c09Copy full SHA for 5087c09
.github/workflows/release.yml
@@ -16,6 +16,10 @@ on:
16
description: "If true, simulate the release without pushing or tagging"
17
required: false
18
default: "false"
19
+ commitsList:
20
+ description: "(ONLY FOR HOTFIXES) Comma-separated list of SHA1 commits to cherry-pick before creating the release tag. Example: abc123,def456"
21
+ required: false
22
+ default: ""
23
24
permissions:
25
contents: write
@@ -33,5 +37,6 @@ jobs:
33
37
kestraVersion: ${{ github.event.inputs.kestraVersion }}
34
38
nextVersion: ${{ github.event.inputs.nextVersion }}
35
39
dryRun: ${{ github.event.inputs.dryRun }}
40
+ commitsList: ${{ github.event.inputs.commitsList }}
36
41
env:
42
GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }}
0 commit comments