From: George Joseph Date: Fri, 7 Jul 2023 17:06:24 +0000 (-0600) Subject: .github: Update AsteriskReleaser for security releases X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8b01ed8ecaa8fba87b507817306b8fa62bd38ec;p=thirdparty%2Fasterisk.git .github: Update AsteriskReleaser for security releases --- diff --git a/.github/workflows/Releaser.yml b/.github/workflows/Releaser.yml index 20901d9461..e37d13a1b3 100644 --- a/.github/workflows/Releaser.yml +++ b/.github/workflows/Releaser.yml @@ -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}}