Skip to content

Commit

Permalink
🌱 Add workflow to allow automated cherrypicking to release branches (#…
Browse files Browse the repository at this point in the history
…108)

Signed-off-by: Fabian von Feilitzsch <fabian@fabianism.us>
  • Loading branch information
fabianvf authored Jan 4, 2024
1 parent c1ca674 commit 341e021
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr-closed.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: PR Closed

on:
pull_request_target:
branches:
- main
types:
- closed

jobs:
cherry_pick_job:
permissions:
pull-requests: write
contents: write
if: github.event.pull_request.merged == true
uses: konveyor/release-tools/.github/workflows/cherry-pick.yml@main

0 comments on commit 341e021

Please sign in to comment.