Skip to content

Commit 9053c85

Browse files
authored
[devsec] Make it possible to trigger release manually (#2561)
## Summary Make it possible to trigger release manually. I was missing the `inputs:` field previously ## How was it tested? Need to check it in first. ## Is this change backwards-compatible? Yes
1 parent 072970a commit 9053c85

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ name: release
33
on:
44
# Build/Release on demand
55
workflow_dispatch:
6-
is_snapshot_release:
7-
description: "Release Snapshot?"
8-
required: true
9-
default: false
10-
type: boolean
6+
inputs:
7+
is_snapshot_release:
8+
description: "Release Snapshot?"
9+
required: false
10+
default: false
11+
type: boolean
1112
# Nightly releases
1213
schedule:
1314
- cron: "45 8 * * 1-5"

0 commit comments

Comments
 (0)