Skip to content

Sync stage -> production #22

Sync stage -> production

Sync stage -> production #22

name: Sync stage -> production
on:
workflow_dispatch:
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Opening pull request
id: pull
# Need main for LABELS option.
uses: tretuna/sync-branches@main
with:
GITHUB_TOKEN: ${{secrets.TOKEN_TEST}}
FROM_BRANCH: "stage"
TO_BRANCH: "production"
LABELS: "['automerge']"
PULL_REQUEST_AUTO_MERGE_METHOD: "merge"