Skip to content

Commit

Permalink
Temporary release finalizer
Browse files Browse the repository at this point in the history
  • Loading branch information
sobychacko committed Feb 16, 2024
1 parent 7e2195c commit 734ebfe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/manual-finalize-release.yml
Original file line number Diff line number Diff line change
@@ -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_SLACK_WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_SLACK_WEBHOOK_URL }}

0 comments on commit 734ebfe

Please sign in to comment.