From ad1ccba072aea58619361eed5df776297019411f Mon Sep 17 00:00:00 2001 From: Ryan Emery Date: Fri, 23 Jan 2026 16:59:04 -0800 Subject: [PATCH 1/2] chore: Remove unsued workflow --- .github/workflows/repo-sync.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/repo-sync.yml diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml deleted file mode 100644 index e3776d3..0000000 --- a/.github/workflows/repo-sync.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Repo Sync - -on: - workflow_dispatch: # allows triggering this manually through the Actions UI - -jobs: - repo-sync: - name: Repo Sync - environment: repo-sync - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: repo-sync/github-sync@v2 - name: Sync repo to branch - with: - source_repo: ${{ secrets.SOURCE_REPO }} - source_branch: master - destination_branch: ${{ secrets.INTERMEDIATE_BRANCH }} - github_token: ${{ secrets.GITHUB_TOKEN }} - - uses: repo-sync/pull-request@v2 - name: Create pull request - with: - source_branch: ${{ secrets.INTERMEDIATE_BRANCH }} - destination_branch: master - github_token: ${{ secrets.GITHUB_TOKEN }} From b325b8d546dcfd8dad8794f8e559782d5a627cae Mon Sep 17 00:00:00 2001 From: Ryan Emery Date: Tue, 27 Jan 2026 14:12:51 -0800 Subject: [PATCH 2/2] Revert "chore: Remove unsued workflow" This reverts commit ad1ccba072aea58619361eed5df776297019411f. --- .github/workflows/repo-sync.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/repo-sync.yml diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml new file mode 100644 index 0000000..e3776d3 --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,25 @@ +name: Repo Sync + +on: + workflow_dispatch: # allows triggering this manually through the Actions UI + +jobs: + repo-sync: + name: Repo Sync + environment: repo-sync + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: repo-sync/github-sync@v2 + name: Sync repo to branch + with: + source_repo: ${{ secrets.SOURCE_REPO }} + source_branch: master + destination_branch: ${{ secrets.INTERMEDIATE_BRANCH }} + github_token: ${{ secrets.GITHUB_TOKEN }} + - uses: repo-sync/pull-request@v2 + name: Create pull request + with: + source_branch: ${{ secrets.INTERMEDIATE_BRANCH }} + destination_branch: master + github_token: ${{ secrets.GITHUB_TOKEN }}