From 42237c3c9ae4e9ee490f56c2c7c9cbc85ed00150 Mon Sep 17 00:00:00 2001 From: Andre Kutianski Date: Mon, 6 Jul 2026 21:25:12 -0300 Subject: [PATCH] =?UTF-8?q?ci:=20roda=20o=20workflow=20CI=20em=20master=20?= =?UTF-8?q?(n=C3=A3o=20s=C3=B3=20na=20branch=20v3=20legada)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Desde 45aa6e8 ("master passa a ser a linha canônica v3+"), o ci.yml continuou disparando apenas em push/PR da branch `v3`. Efeito: nenhum PR contra master rodou o CI funcional (matriz PHP 8.2/8.3/8.4 + PHPStan + CS + generate:check) — só o CodeQL. Confirmado nos PRs #21 (release v3.1.0) e #23. Adiciona `master` aos gatilhos push e pull_request (mantém `v3` por segurança; a branch ainda existe, congelada em v3.0.0). Mudança não-destrutiva, só de gatilho — sem uso de input não confiável. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4aaf014..a44900a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [v3] + branches: [master, v3] pull_request: - branches: [v3] + branches: [master, v3] permissions: contents: read