From 47acc310d472640346b1f5dc5a67c355e8dd2bf0 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Fri, 15 Mar 2024 17:56:12 +0100 Subject: [PATCH] [CI] Automate uplifting XMA branch - Changed name of primary workflow --- .../workflows/{CI.yml => Windows_build.yml} | 2 +- .github/workflows/XMA_Automerge.yml | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) rename .github/workflows/{CI.yml => Windows_build.yml} (99%) create mode 100644 .github/workflows/XMA_Automerge.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/Windows_build.yml similarity index 99% rename from .github/workflows/CI.yml rename to .github/workflows/Windows_build.yml index 0bcc9f5f7..c64c88fc3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/Windows_build.yml @@ -1,4 +1,4 @@ -name: CI +name: Windows build on: push: diff --git a/.github/workflows/XMA_Automerge.yml b/.github/workflows/XMA_Automerge.yml new file mode 100644 index 000000000..3b2fff642 --- /dev/null +++ b/.github/workflows/XMA_Automerge.yml @@ -0,0 +1,22 @@ +name: Uplift XMA branch + +on: + push: + branches: + - canary_experimental + +jobs: + update-branch: + name: Uplift XMA branch + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: canary_experimental_wip_xma_decoder + + - name: Update XMA branch + run: | + git pull origin canary_experimental --rebase + git push origin canary_experimental_wip_xma_decoder --force