From d88f2fbd075cb22fc49246227abe5ef080bedd7a Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 15 Jul 2024 12:47:58 -0400 Subject: [PATCH] Add tentative `call-finalize.yml` --- .github/workflows/call-finalize.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/call-finalize.yml diff --git a/.github/workflows/call-finalize.yml b/.github/workflows/call-finalize.yml new file mode 100644 index 0000000000..253c12692c --- /dev/null +++ b/.github/workflows/call-finalize.yml @@ -0,0 +1,15 @@ +on: + workflow_dispatch: + inputs: + milestone: + description: 'Release version like 5.0.0-M1, 5.1.0-RC1, 5.2.0 etc.' + required: true + +jobs: + finalize: + 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 }}