-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce release management centralised workflow
- Loading branch information
1 parent
24b8544
commit d9e91f7
Showing
2 changed files
with
26 additions
and
56 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Release Management | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- labeled | ||
- unlabeled | ||
- synchronize | ||
- reopened | ||
- milestoned | ||
- demilestoned | ||
- ready_for_review | ||
milestone: | ||
types: | ||
- closed | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
jobs: | ||
release-managment: | ||
name: Create Release | ||
uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main | ||
with: | ||
milestone: ${{ github.event.milestone.title }} | ||
description: ${{ github.event.milestone.title }} |