From 93100e23791fff7a244e1614d3d8eede8c0b0f50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Sun, 21 Jun 2026 20:06:14 +0000 Subject: [PATCH] ci: remove unused master branch from workflow triggers The CI workflow referenced both 'main' and 'master' branches, but the repository only uses 'main'. Removed 'master' from push and pull_request triggers to keep the workflow configuration accurate. --- .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 eeabe4c..3c0bd2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [main, master] + branches: [main] pull_request: - branches: [main, master] + branches: [main] jobs: build: