From 9ae7527f203febb76aade90bcada9fc9abea7a6e Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Wed, 23 Oct 2024 07:52:16 -0400 Subject: [PATCH] Add `manual-finalize-release.yml` GHA WF --- .github/workflows/manual-finalize-release.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/manual-finalize-release.yml diff --git a/.github/workflows/manual-finalize-release.yml b/.github/workflows/manual-finalize-release.yml new file mode 100644 index 0000000000..bd0405f924 --- /dev/null +++ b/.github/workflows/manual-finalize-release.yml @@ -0,0 +1,21 @@ +name: Finalize Release Manually + +on: + workflow_dispatch: + inputs: + milestone: + description: 'Milestone title, e.g 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.' + +jobs: + finalize-release: + permissions: + actions: write + contents: write + issues: write + + uses: spring-io/spring-github-workflows/.github/workflows/spring-finalize-release.yml@main + with: + milestone: ${{ inputs.milestone }} + secrets: + GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} + SPRING_RELEASE_CHAT_WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }} \ No newline at end of file