Skip to content

Commit 809f20d

Browse files
committed
Bring back GITHUB_TOKEN ENV var for finalize
1 parent 6cd3ff5 commit 809f20d

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/finalize.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Finalize Release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
milestone:
7+
description: 'Milestone title like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
8+
required: true
9+
type: string
10+
11+
jobs:
12+
release:
13+
uses: spring-projects/spring-integration-aws/.github/workflows/spring-finalize-release.yml@main
14+
with:
15+
milestone: ${{ inputs.milestone }}
16+
secrets: inherit

.github/workflows/spring-finalize-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
env:
1212
MILESTONE: ${{ inputs.milestone }}
13+
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
1314

1415
jobs:
1516
finalize-releae:

0 commit comments

Comments
 (0)