Skip to content

Commit

Permalink
introduce usage of reusable workflow to create cherry-pick PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
michelengelen committed Nov 4, 2024
1 parent eb2cae5 commit e1d04a9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 68 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/cherry-pick-master-to-v7.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/cherry-pick-v7-to-v6.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/create-cherry-pick-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create cherry-pick PR
on:
pull_request_target:
branches:
- 'v*.x'
- 'master'
types: ['closed']

permissions: {}

jobs:
create_pr:
name: Create cherry-pick PR
uses: mui/mui-public/.github/workflows/prs_create-cherry-pick-pr.yml@master
permissions:
contents: write
issues: write
pull-requests: write

0 comments on commit e1d04a9

Please sign in to comment.