From 03f3769e0b6b248c3403668a799b34f7fe5b0f13 Mon Sep 17 00:00:00 2001 From: Robert Jambrecic Date: Wed, 4 Sep 2024 12:40:31 +0200 Subject: [PATCH] Dont run test-with-llms for the readonly queue branches --- .github/workflows/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 049832be..e5a652bc 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -38,8 +38,8 @@ jobs: secrets: inherit # pragma: allowlist secret test-with-llms: - # gh-readonly-queue - if: ${{ !startsWith(github.ref_name, 'update') }} + # Don't run this job for the readonly queue branches + if: ${{ !startsWith(github.ref_name, 'gh-readonly-queue') }} strategy: matrix: pytest-marks: ["openai and (not brief_creation_team and not campaign_creation_team and not weekly_analysis_team and not get_info_from_the_web_page and not fastapi_openapi_team)", "brief_creation_team and openai", "campaign_creation_team and openai", "weekly_analysis_team", "get_info_from_the_web_page", "fastapi_openapi_team"]