From 412e39b898136845fdf1af71c0ae70448e63c0f6 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 4 Mar 2022 22:50:23 +0100 Subject: [PATCH] fix wrong branch name in github actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c7a84cd1..c2279d5a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ name: CI on: push: - branches: [ master ] + branches: [ 1.2-maint ] paths: - '**.py' - '**.pyx' @@ -16,7 +16,7 @@ on: - 'requirements.d/*' - '!docs/**' pull_request: - branches: [ master ] + branches: [ 1.2-maint ] paths: - '**.py' - '**.pyx' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3ef6dfe58..af1edc15d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -4,10 +4,10 @@ name: "CodeQL" on: push: - branches: [ master ] + branches: [ 1.2-maint ] pull_request: # The branches below must be a subset of the branches above - branches: [ master ] + branches: [ 1.2-maint ] schedule: - cron: '39 2 * * 5'