Sync stage -> production #22
Workflow file for this run
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 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" |