From 0523ad4800aaf1ec4afb89ec80e2f25efe23759c Mon Sep 17 00:00:00 2001 From: Daniel Willim Date: Tue, 18 Aug 2026 13:50:51 +0200 Subject: [PATCH] ci: run lint and tests on pushes to branches containing slashes The "*" glob does not match "/", so pushes to renovate/* and dependabot/* branches never triggered the workflow, leaving bot PRs untested. --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 871314b..a363177 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,7 +8,7 @@ permissions: on: push: - branches: [ "*" ] + branches: [ "**" ] jobs: lint: