From 87159f990440813e50e02cd949359ea445eb0d34 Mon Sep 17 00:00:00 2001 From: tkgstrator <29420801+tkgstrator@users.noreply.github.com> Date: Thu, 17 Sep 2026 20:05:50 +0000 Subject: [PATCH] fix(ci): stop integration workflow from running twice per PR integration.yaml triggered on both push (branches-ignore: main/master) and pull_request, so pushing to a PR branch fired the workflow twice (push + pull_request synchronize), running commitlint/ruff/mypy/pytest jobs redundantly. Consolidate to pull_request only, since main/master were already excluded from the push trigger and no direct-push-to- protected-branch check was in play. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/integration.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 705ac35..aa76fec 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -1,9 +1,5 @@ name: Integration on: - push: - branches-ignore: - - main - - master pull_request: concurrency: