]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
.github: Update AsteriskReleaser for security releases
authorGeorge Joseph <gjoseph@sangoma.com>
Fri, 7 Jul 2023 17:06:24 +0000 (11:06 -0600)
committerGeorge Joseph <gjoseph@sangoma.com>
Mon, 9 Oct 2023 14:46:53 +0000 (08:46 -0600)
.github/workflows/Releaser.yml

index 20901d9461707044512976e95a9f05e577b49201..e37d13a1b3455094de672763d30aaac6ffb6a202 100644 (file)
@@ -4,6 +4,27 @@ run-name: ${{ github.actor }} is creating ${{vars.PRODUCT_NAME}} release ${{inpu
 on:
   workflow_dispatch:
     inputs:
+      is_security:
+        description: |
+          Security?
+          (No prev RCs)
+        required: true
+        type: boolean
+        default: false
+      advisories:
+        description: |
+          Comma separated list of advisories.
+          NO SPACES
+          Example: GHSA-4xjp-22g4-9fxm,GHSA-4xjp-22g4-zzzz
+        required: false
+        type: string
+      is_hotfix:
+        description: |
+          Hotfix?
+          (A patch release but not security.  No prev RCs)
+        required: true
+        type: boolean
+        default: false
       new_version:
         description: |
           New Version:
@@ -59,6 +80,8 @@ jobs:
         with:
           product: ${{vars.PRODUCT_NAME}}
           is_security: ${{inputs.is_security}}
+          advisories: ${{inputs.advisories}}
+          is_hotfix: ${{inputs.is_hotfix}}
           new_version: ${{inputs.new_version}}
 #          start_version: ${{inputs.start_version}}
           push_release_branches: ${{inputs.push_release_branches}}