From a1ecfdfacd6caf9c75a7973086e6ba5e109edd44 Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Wed, 23 Apr 2025 18:10:30 +0200 Subject: [PATCH] Update CI workflow to use 'master' instead of 'main' Replaced branch references from 'main' to 'master' in the CI configuration. This ensures consistency across workflows and aligns with branch naming conventions. --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 0a45ff9..547e9fd 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -2,11 +2,11 @@ name: CI on: push: - branches: [ "main", "dev" ] + branches: [ "master", "dev" ] # Publish semver tags as releases. tags: [ 'v*.*.*' ] pull_request: - branches: ["main", "dev"] + branches: ["master", "dev"] release: types: [created]