From 1bf25dd5213ff49099d6fa13f9ac112d4e7149fe Mon Sep 17 00:00:00 2001 From: Catalan Lover Date: Tue, 7 Jul 2026 17:30:03 +0200 Subject: [PATCH] Fix Docker Workflow Validator only running on main repo activity. This worked fine when the PR originated in the main repo but did not for external PRs and this workflow is safe for external due to no secrets access. --- .github/workflows/validate-docker-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/validate-docker-build.yml b/.github/workflows/validate-docker-build.yml index d0464b2a..62f46ce3 100644 --- a/.github/workflows/validate-docker-build.yml +++ b/.github/workflows/validate-docker-build.yml @@ -13,6 +13,10 @@ on: - "github-actions/**" schedule: - cron: "20 20 * * *" + pull_request: + branches-ignore: + - "dependabot/**" + - "github-actions/**" merge_group: branches: [main]