From d3bc76af11f2602faa668edc4c6410e2954b40c8 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 16 Nov 2024 12:44:08 -0800 Subject: [PATCH] Update CI branch targets --- .github/workflows/ci.yml | 4 ++-- .github/workflows/gh-pages.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9cbbf945..a07993923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ master ] + branches: [ 7.9.2 ] pull_request: - branches: [ master ] + branches: [ 7.9.2 ] jobs: test: diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 5c48d144a..ef2ae2ef5 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -3,7 +3,7 @@ name: Rebuild Distribution on: push: branches: - - 'master' + - '7.9.2' paths: - 'Extensions/*' - 'Themes/*' @@ -33,7 +33,7 @@ jobs: git remote set-branches --add origin gh-pages git fetch git checkout -f -t -b gh-pages origin/gh-pages - git reset --hard master + git reset --hard 7.9.2 - name: Install dependencies run: npm ci