Skip to content

Commit

Permalink
create pr workflow (#221) (#222)
Browse files Browse the repository at this point in the history
Co-authored-by: yuokamoto <[email protected]>
  • Loading branch information
github-actions[bot] and yuokamoto authored Nov 6, 2023
1 parent d097a2a commit 66c2441
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Create a pull request to other versions

on:
pull_request:
branches:
- devel
- UE5.2
- UE5.3
types: ["closed"]

workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
create_pr:
runs-on: ubuntu-latest
name: create_pr to other branchs
if: github.event.pull_request.merged == true
strategy:
matrix:
version:
- devel
- UE5.2
- UE5.3
steps:
- name: Checkout
uses: actions/checkout@v4
if: matrix.version != github.base_ref
with:
ref: ${{ matrix.version }}
- name: Debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo ${{ matrix.version }}, ${{ github.base_ref }}, $GITHUB_SHA. ${{ github.event.pull_request.user.login }}
- name: Cherry pick and create PR
if: matrix.version != github.base_ref
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: carloscastrojumo/[email protected]
with:
branch: ${{ matrix.version }}
labels: |
cherry-pick
reviewers: |
${{ github.event.pull_request.user.login }}
token: ${{ secrets.GITHUB_TOKEN }}
cherry-pick-branch: auto_created_${{ matrix.version }}_${{ github.sha }}
title: '[cherry-pick to ${{ matrix.version }} from ${{ github.base_ref }}] ${{ github.event.pull_request.title }}'
body: 'Cherry picking ${{ github.event.pull_request.title }} onto this branch'

0 comments on commit 66c2441

Please sign in to comment.