From: George Joseph Date: Fri, 18 Jul 2025 17:04:04 +0000 (-0600) Subject: .github: Add skip-cherry-pick and skip-test-builds to Releaser. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=472eb45dc9187743a14fae639cf5d4ac8bb687a1;p=thirdparty%2Fasterisk.git .github: Add skip-cherry-pick and skip-test-builds to Releaser. --- diff --git a/.github/workflows/Releaser.yml b/.github/workflows/Releaser.yml index e5983fe119..1f6b67cdbe 100644 --- a/.github/workflows/Releaser.yml +++ b/.github/workflows/Releaser.yml @@ -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}}