From 732731852372622ac0eb638f7bb0f7165c136f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Thu, 2 May 2024 14:47:01 +0000 Subject: [PATCH] Fix default branch for GitHub Actions workflows --- .github/workflows/analysis.yml | 4 ++-- .github/workflows/ci.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 25992dc8..fed68b98 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -5,10 +5,10 @@ name: Analysis on: push: branches: - - main + - develop pull_request: branches: - - main + - develop schedule: - cron: '43 2 * * 6' workflow_dispatch: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index beb7429a..09a195a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,10 @@ name: CI on: push: branches: - - main + - develop pull_request: branches: - - main + - develop jobs: prepare: @@ -45,7 +45,7 @@ jobs: release: name: Release - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/develop' uses: ./.github/workflows/release.yml permissions: contents: write