.github: Update AsteriskReleaser for security releases

This commit is contained in:
George Joseph 2023-07-07 11:06:24 -06:00
parent 1379e048da
commit a8b01ed8ec
1 changed files with 23 additions and 0 deletions

View 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}}