Skip to content

Commit

Permalink
fix: automerge label
Browse files Browse the repository at this point in the history
  • Loading branch information
stehessel committed Apr 25, 2024
1 parent 1aabe3f commit 0fcce9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sync-prod-from-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
uses: actions/checkout@v4
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
# Need master for LABELS option.
uses: tretuna/sync-branches@master
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "stage"
TO_BRANCH: "production"
LABELS: automerge
LABELS: ["automerge"]
5 changes: 3 additions & 2 deletions .github/workflows/sync-stage-from-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
uses: actions/checkout@v4
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
# Need master for LABELS option.
uses: tretuna/sync-branches@master
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "master"
TO_BRANCH: "stage"
LABELS: automerge
LABELS: ["automerge"]

0 comments on commit 0fcce9e

Please sign in to comment.