Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mintsweet/auto-cherry-pick
- Owner: mintsweet
- License: mit
- Created: 2023-05-24T03:04:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-30T08:47:42.000Z (11 months ago)
- Last Synced: 2024-12-17T14:11:58.643Z (8 days ago)
- Language: Shell
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 Pickon:
pull_request:
types:
- labeled
- closedjobs:
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)