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: .github/workflows/release-22_combined-rc-runtime-builds-release-draft.yml
+21-1Lines changed: 21 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,11 @@ on:
47
47
description: Tag matching the actual release candidate with the format polkadot-stableYYMM(-X)-rcY or polkadot-stableYYMM(-X)
48
48
type: string
49
49
required: true
50
+
no_runtimes:
51
+
description: If true, no runtime build will be triggered and release draft will be published without runtimes (⚠️ use it for the patch releases of the latest stable)
Copy file name to clipboardExpand all lines: .github/workflows/release-30_publish_release_draft.yml
+26-3Lines changed: 26 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,17 @@ on:
20
20
required: true
21
21
type: string
22
22
runtimes:
23
-
description: Runtimes to be published
23
+
description: Runtimes to be published (⚠️ this needs to be provided in case of the complete release, for the crates only release or a patch release without runtimes it is not needed)
24
+
no_runtimes:
25
+
description: If true, release draft will be published without runtimes
26
+
required: true
27
+
type: boolean
28
+
default: false
29
+
crates_only:
30
+
description: If true, release draft will contain only release notes and no artifacts will be published (needed for stable releases that are crates only)
24
31
required: true
32
+
type: boolean
33
+
default: false
25
34
workflow_call:
26
35
inputs:
27
36
release_tag:
@@ -34,8 +43,17 @@ on:
34
43
type: string
35
44
runtimes:
36
45
description: Runtimes to be published
37
-
required: true
38
46
type: string
47
+
no_runtimes:
48
+
description: If true, release draft will be published without runtimes
49
+
required: true
50
+
type: boolean
51
+
default: false
52
+
crates_only:
53
+
description: If true, release draft will contain only release notes and no artifacts will be published (needed for stable releases that are crates only)
0 commit comments