Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add cherry-pick action #5575

Merged
merged 6 commits into from
May 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add cherry-pick action
  • Loading branch information
vepatel committed May 17, 2024
commit b5818bf192729e294f8ad9fd20187955c9b3c71b
25 changes: 25 additions & 0 deletions .github/workflows/cherry-pick.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
pull_request:
branches:
- main
types: ["closed"]

jobs:
cherry_pick_to_release:
runs-on: ubuntu-latest
name: Cherry pick into release-3.5
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c1
with:
fetch-depth: 0
- name: Cherry pick into release-3.5
uses: carloscastrojumo/[email protected]
with:
branch: release-3.5
author: nginx-bot <[email protected]>
labels: |
dependencies
reviewers: |
kic
Loading