From 4a0a2ecc726f2167f42faa95c511d714f20e5c6c Mon Sep 17 00:00:00 2001 From: JRPAN <25518778+JRPan@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:00:00 -0400 Subject: [PATCH] ignore on push for merge queue created branches --- .github/workflows/long-tests.yml | 2 ++ .github/workflows/short-tests.yml | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/long-tests.yml b/.github/workflows/long-tests.yml index 6c4579a37..95883ef0d 100644 --- a/.github/workflows/long-tests.yml +++ b/.github/workflows/long-tests.yml @@ -6,6 +6,8 @@ name: Long Tests on: # Triggers the workflow on push or pull request events but only for the mydev branch push: + branches-ignore: + - "gh-readonly-queue**" merge_group: # Allows you to run this workflow manually from the Actions tab diff --git a/.github/workflows/short-tests.yml b/.github/workflows/short-tests.yml index 6d370a501..1e76120ce 100644 --- a/.github/workflows/short-tests.yml +++ b/.github/workflows/short-tests.yml @@ -4,7 +4,13 @@ name: Short Tests # Controls when the workflow will run on: + # Triggers the workflow on push or pull request events but only for the mydev branch + push: + branches-ignore: + - "gh-readonly-queue**" pull_request: + + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel