From c7955369ef604db6cf3d475941c18d3780f268fe Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Thu, 24 Oct 2024 22:29:42 +0200 Subject: [PATCH] Create sync-main-current-release.yml --- .github/workflows/sync-main-current-release.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/sync-main-current-release.yml diff --git a/.github/workflows/sync-main-current-release.yml b/.github/workflows/sync-main-current-release.yml new file mode 100644 index 00000000..3d23182a --- /dev/null +++ b/.github/workflows/sync-main-current-release.yml @@ -0,0 +1,17 @@ +on: + push: + branches: + - 'main' + +jobs: + mirror_job: + runs-on: ubuntu-latest + name: Mirror 'main' branch to latest release branch + steps: + - name: Mirror action step + id: mirror + uses: google/mirror-branch-action@v1.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + source: 'main' + dest: 'styhead'