diff --git a/.github/workflows/sync-22-23.yml b/.github/workflows/sync-22-23.yml new file mode 100644 index 0000000000..e4de99e2f4 --- /dev/null +++ b/.github/workflows/sync-22-23.yml @@ -0,0 +1,25 @@ +name: Sync 23.x with 22.x +on: + push: + branches: + - release-22.x + workflow_dispatch: + +jobs: + sync-branches: + runs-on: ubuntu-latest + name: Syncing branches + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - name: Create Pull Request + id: cpr + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + FROM_BRANCH: release-22.x + TO_BRANCH: release-23.x