Skip to content

Commit

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

0 comments on commit 9997433

Please sign in to comment.