diff --git a/.github/workflows/auto-pr-for-branch-syncing.yml b/.github/workflows/auto-pr-for-branch-syncing.yml index aaf748f33..813da271a 100644 --- a/.github/workflows/auto-pr-for-branch-syncing.yml +++ b/.github/workflows/auto-pr-for-branch-syncing.yml @@ -2,7 +2,7 @@ name: Auto PR for syncing master to master-private on: push: - branches: [ master ] + branches: [master] jobs: auto-pr-for-branch-syncing: diff --git a/.github/workflows/dispatch-sync-to-private.yml b/.github/workflows/dispatch-sync-to-private.yml index 57f647495..345af2728 100644 --- a/.github/workflows/dispatch-sync-to-private.yml +++ b/.github/workflows/dispatch-sync-to-private.yml @@ -2,8 +2,7 @@ name: Dispatch sync event to plasma-contracts-private on: push: - branches: - - master + branches: [master] jobs: dispatch-sync-event: @@ -11,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Repository Dispatch - if: github.repository == 'boolafish/plasma-contracts' + if: github.repository == 'omisego/plasma-contracts' uses: peter-evans/repository-dispatch@v1 with: token: ${{ secrets.HOUSE_KEEPER_BOT_TOKEN }} diff --git a/.github/workflows/sync-from-public-to-private.yml b/.github/workflows/sync-from-public-to-private.yml index 6b745c4a6..fe63e5840 100644 --- a/.github/workflows/sync-from-public-to-private.yml +++ b/.github/workflows/sync-from-public-to-private.yml @@ -20,7 +20,7 @@ jobs: - name: GitHub Repo Sync uses: repo-sync/github-sync@v2.0.0 with: - source_repo: boolafish/plasma-contracts + source_repo: omisego/plasma-contracts source_branch: master destination_branch: master github_token: ${{ secrets.GITHUB_TOKEN }}