From f40327af010546b8c1c41f094ac61aa497210122 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Sat, 4 May 2024 20:41:30 -0500 Subject: [PATCH] Fix running workflows in the main branch --- .github/workflows/linux-tests.yml | 4 ++-- .github/workflows/macos-tests.yml | 4 ++-- .github/workflows/windows-tests.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux-tests.yml b/.github/workflows/linux-tests.yml index 52495749..13cc3960 100644 --- a/.github/workflows/linux-tests.yml +++ b/.github/workflows/linux-tests.yml @@ -3,10 +3,10 @@ name: Linux tests on: push: branches: - - master + - main pull_request: branches: - - master + - main workflow_dispatch: concurrency: diff --git a/.github/workflows/macos-tests.yml b/.github/workflows/macos-tests.yml index 4042616a..71bc0211 100644 --- a/.github/workflows/macos-tests.yml +++ b/.github/workflows/macos-tests.yml @@ -3,10 +3,10 @@ name: Macos tests on: push: branches: - - master + - main pull_request: branches: - - master + - main concurrency: group: macos-tests-${{ github.ref }} diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index 3db1c7ff..517655e3 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -3,10 +3,10 @@ name: Windows tests on: push: branches: - - master + - main pull_request: branches: - - master + - main concurrency: group: windows-tests-${{ github.ref }}