Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mintsweet/auto-cherry-pick

⚙️ A GitHub Action that automatically cherry pick
https://github.com/mintsweet/auto-cherry-pick

Last synced: 6 days ago
JSON representation

⚙️ A GitHub Action that automatically cherry pick

Awesome Lists containing this project

README

        

# Auto Cherry Pick

A GitHub Action that automatically cherry pick.

## What does it do?

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.

## Example

```yml
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/[email protected]
```

## License

[MIT](./LICENSE)