Skip to content

Commit

Permalink
Bring back GITHUB_TOKEN ENV var for finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Nov 16, 2023
1 parent 6cd3ff5 commit 809f20d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/finalize.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .github/workflows/spring-finalize-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

env:
MILESTONE: ${{ inputs.milestone }}
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

jobs:
finalize-releae:
Expand Down

0 comments on commit 809f20d

Please sign in to comment.