Skip to content

Commit

Permalink
ci: add action to sync branches
Browse files Browse the repository at this point in the history
  • Loading branch information
tmspzz committed Jul 13, 2023
1 parent bf7bbad commit 3c42c70
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/synch-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Sync RC and DEV
on:
push:
branches:
- release/candidate

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches RC and DEV
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "release/candidate"
TO_BRANCH: "develop"
TEAM_REVIEWERS: '["android"]'
CONTENT_COMPARISON: true
PULL_REQUEST_IS_DRAFT: true
PULL_REQUEST_TITLE: ${{ github.event.head_commit.message }}

0 comments on commit 3c42c70

Please sign in to comment.