Merge pull request #3678 from Tangerine-Community/release/v3.30.2 #108
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: Sync | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-branches: | |
runs-on: ubuntu-latest | |
name: Syncing branches | |
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: "main" | |
TO_BRANCH: "develop" | |
- name: automerge | |
uses: "pascalgn/[email protected]" | |
env: | |
MERGE_LABELS: "" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
PULL_REQUEST: "${{ steps.pull.outputs.PULL_REQUEST_NUMBER }}" |