From 7497b62a3c4e218727480c46ad600a259f3137e0 Mon Sep 17 00:00:00 2001 From: Jinwoo Hwang Date: Mon, 19 Jan 2026 06:06:07 -0500 Subject: [PATCH] GEODE-10551: Update GitHub Actions workflows to trigger on support/2.0 branch Configure GitHub Actions workflow files to run on support/2.0 branch instead of develop branch. This enables automated CI/CD checks for pull requests targeting support/2.0. Changes: - Update .github/workflows/codeql.yml to trigger on support/2.0 branch - Update .github/workflows/gradle.yml to trigger on support/2.0 branch --- .github/workflows/codeql.yml | 4 ++-- .github/workflows/gradle.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ff3ab1aec33..a214b69e046 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,10 +30,10 @@ name: "CodeQL" on: push: - branches: [ develop ] + branches: [ support/2.0 ] pull_request: # The branches below must be a subset of the branches above - branches: [ develop ] + branches: [ support/2.0 ] schedule: - cron: '22 22 * * 2' diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 8d5a5e36df7..00e80b387ec 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -19,9 +19,9 @@ name: develop on: push: - branches: [ "develop" ] + branches: [ "support/2.0" ] pull_request: - branches: [ "develop" ] + branches: [ "support/2.0" ] permissions: contents: read