Merge pull request #2702 from gluestack/release/[email protected] #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-Backmerge PR | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-backmerge-pr: | |
name: Create Backmerge PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Create Backmerge PR | |
uses: devops-infra/[email protected] | |
with: | |
github_token: ${{ secrets.MY_GITHUB_TOKEN }} | |
source_branch: main | |
target_branch: patch | |
title: 'Backmerge Main -> Patch' |