]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
.github: Add skip-cherry-pick and skip-test-builds to Releaser.
authorGeorge Joseph <gjoseph@sangoma.com>
Fri, 18 Jul 2025 17:04:04 +0000 (11:04 -0600)
committerGeorge Joseph <gjoseph@sangoma.com>
Fri, 18 Jul 2025 17:04:04 +0000 (11:04 -0600)
.github/workflows/Releaser.yml

index e5983fe1194a835df3afe48fc83ee74e294e9a1a..1f6b67cdbe3f67c5267d14f3524360daf632a475 100644 (file)
@@ -32,12 +32,24 @@ on:
         required: true
         type: boolean
         default: false
+      skip_cherry_pick:
+        description: |
+          Skip automatic cherry-pick for regular RC1 releases? USE WITH CAUTION!
+        required: true
+        type: boolean
+        default: false
       force_cherry_pick:
         description: |
           Force cherry-pick for non-RC1 releases? USE WITH CAUTION!
         required: true
         type: boolean
         default: false
+      skip_test_builds:
+        description: |
+          Skip test builds?  USE WITH CAUTION!
+        required: true
+        type: boolean
+        default: false
       push_release_branches:
         description: |
           Push release branches live?
@@ -71,7 +83,9 @@ jobs:
       is_security: ${{inputs.is_security}}
       advisories: ${{inputs.advisories}}
       is_hotfix: ${{inputs.is_hotfix}}
+      skip_cherry_pick: ${{inputs.skip_cherry_pick}}
       force_cherry_pick: ${{inputs.force_cherry_pick}}
+      skip_test_builds: ${{inputs.skip_test_builds}}
       push_release_branches: ${{inputs.push_release_branches}}
       create_github_release: ${{inputs.create_github_release}}
       push_tarballs: ${{inputs.push_tarballs}}