A GitHub Action that automatically cherry pick.
This GitHub Action to help you:
- Auto-create a new PR from a merged PR with a specific label.
- Auto-assign specific labels for the original PR.
- Auto-assign bot comment for the original PR.
- Auto-assign title and body for the new PR.
- Auto-assign specific labels for the new PR.
- Auto-assign bot comment for the new PR.
name: Auto Cherry Pick
on:
pull_request:
types:
- labeled
- closed
jobs:
auto-cherry-pick:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Auto Cherry Pick
uses: mintsweet/auto-cherry-pick@v1.0.0