From: George Joseph Date: Tue, 20 Feb 2024 13:49:20 +0000 (-0700) Subject: .github: Add force_cherry_pick option to Releaser X-Git-Tag: 20.7.0-rc1~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4152f67a0b61b442e52a3597781f6cbbbe8da353;p=thirdparty%2Fasterisk.git .github: Add force_cherry_pick option to Releaser (cherry picked from commit bbafb63bb5d632ee2bed9c9bccfe5b4384921449) --- diff --git a/.github/workflows/Releaser.yml b/.github/workflows/Releaser.yml index 9ef258ae60..704abdfbc1 100644 --- a/.github/workflows/Releaser.yml +++ b/.github/workflows/Releaser.yml @@ -32,6 +32,12 @@ on: 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 push_release_branches: description: | Push release branches live? @@ -69,6 +75,7 @@ jobs: advisories: ${{inputs.advisories}} is_hotfix: ${{inputs.is_hotfix}} new_version: ${{inputs.new_version}} + force_cherry_pick: ${{inputs.force_cherry_pick}} push_release_branches: ${{inputs.push_release_branches}} create_github_release: ${{inputs.create_github_release}} push_tarballs: ${{inputs.push_tarballs}}