Skip to content

ci: add action to sync branches #1

ci: add action to sync branches

ci: add action to sync branches #1

Workflow file for this run

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"]'

Check failure on line 25 in .github/workflows/synch-branches.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/synch-branches.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
CONTENT_COMPARISON: true
PULL_REQUEST_IS_DRAFT: true
PULL_REQUEST_TITLE: ${{ github.event.head_commit.message }}