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/on_release_notes.yml
+17-39Lines changed: 17 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ on:
31
31
workflow_dispatch:
32
32
inputs:
33
33
version_to_publish:
34
-
description: "Version to be released in PyPi, Docs, and Lambda Layer, e.g. v1.26.4"
34
+
description: "Version to be released in PyPi, Docs, and Lambda Layer, e.g. v2.0.0, v2.0.0.a0 (pre-release)"
35
35
default: v2.0.0
36
36
required: true
37
37
skip_pypi:
@@ -44,19 +44,24 @@ on:
44
44
default: false
45
45
type: boolean
46
46
required: false
47
+
# Only use this until v1 is completely dropped, and for manual releases
48
+
skip_version_guard:
49
+
description: "Skips conditions to prevent v1 into v2 releases"
50
+
default: false
51
+
type: boolean
52
+
required: false
47
53
pre_release:
48
-
description: "Publishes documentation using a pre-release tag. You are still responsible for passing a pre-release version tag to the workflow."
54
+
description: "Publishes documentation using a pre-release tag (v2.0.0.a0). You are still responsible for passing a pre-release version tag to the workflow."
0 commit comments