From 729067980783652439f507ac2b0ef6effc15db69 Mon Sep 17 00:00:00 2001 From: nameless-mc Date: Fri, 10 Jul 2026 17:53:41 +0900 Subject: [PATCH] ci: stop running push-triggered CI on renovate branches The test and lint workflows are triggered by both push (main and renovate/**) and pull_request, so every commit on a renovate branch runs the same CI twice: once for the push and once for the PR. Remove renovate/** from the push trigger and let the pull_request trigger cover renovate PRs. Renovate's automerge for this repository is PR-based (automergeType defaults to "pr"; the shared cybozu/renovate-config only uses branch automerge for CircleCI), so it relies on PR checks and does not need push-triggered runs. --- .github/workflows/lint.yml | 1 - .github/workflows/test.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9b289d1383..eadd73315e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - "renovate/**" pull_request: jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e3672d331..4ecaa6439f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - "renovate/**" pull_request: jobs: