Bring back GITHUB_TOKEN ENV var for finalize

This commit is contained in:
Artem Bilan
2023-11-16 10:09:39 -05:00
parent 6cd3ff521f
commit 809f20da79
2 changed files with 17 additions and 0 deletions

16
.github/workflows/finalize.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: Finalize Release
on:
workflow_dispatch:
inputs:
milestone:
description: 'Milestone title like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
required: true
type: string
jobs:
release:
uses: spring-projects/spring-integration-aws/.github/workflows/spring-finalize-release.yml@main
with:
milestone: ${{ inputs.milestone }}
secrets: inherit

View File

@@ -10,6 +10,7 @@ on:
env:
MILESTONE: ${{ inputs.milestone }}
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
jobs:
finalize-releae: