mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 10:45:09 +00:00
9ec9b69fb3
* update dependencies * Update .gitignore
25 lines
No EOL
711 B
YAML
25 lines
No EOL
711 B
YAML
on:
|
|
pull_request_target:
|
|
branches:
|
|
- master
|
|
types: ["closed"]
|
|
|
|
jobs:
|
|
cherry_no_future_to_current:
|
|
runs-on: ubuntu-latest
|
|
name: Cherry pick into current release
|
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'release-2') && github.event.pull_request.merged == true }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Cherry pick into current release
|
|
uses: carloscastrojumo/github-cherry-pick-action@v1.0.10
|
|
with:
|
|
branch: release_1_patches
|
|
labels: |
|
|
cherry-pick
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |