From a4243b2bf3c7989c7567284bee989ac664e815d6 Mon Sep 17 00:00:00 2001 From: Deborah Kaplan Date: Tue, 14 Oct 2025 21:56:13 +0000 Subject: [PATCH] fix: forking work for workflows * Changing the branch for the workflows to match the release branch * disabling the timed update workflow which we are no longer handling here --- .github/workflows/ci.yml | 4 ++-- .github/workflows/migrations-mysql8-check.yml | 2 +- .github/workflows/upgrade-python-requirements.yml | 5 +---- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45385a632..c98f0bb97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [release-ulmo] pull_request: - branches: [master] + branches: [release-ulmo] jobs: quality_and_translations_tests: diff --git a/.github/workflows/migrations-mysql8-check.yml b/.github/workflows/migrations-mysql8-check.yml index 484bd28af..01813d6ef 100644 --- a/.github/workflows/migrations-mysql8-check.yml +++ b/.github/workflows/migrations-mysql8-check.yml @@ -5,7 +5,7 @@ on: pull_request: push: branches: - - master + - release-ulmo jobs: check_migrations: diff --git a/.github/workflows/upgrade-python-requirements.yml b/.github/workflows/upgrade-python-requirements.yml index 183e9381a..3c34ea2c7 100644 --- a/.github/workflows/upgrade-python-requirements.yml +++ b/.github/workflows/upgrade-python-requirements.yml @@ -1,15 +1,12 @@ name: Upgrade Requirements on: - schedule: - # will start the job at 13:15 UTC every Tuesday - - cron: "15 13 * * 2" workflow_dispatch: inputs: branch: description: 'Target branch to create requirements PR against' required: true - default: 'master' + default: 'release-ulmo' jobs: call-upgrade-python-requirements-workflow: uses: openedx/.github/.github/workflows/upgrade-python-requirements.yml@master