From e876c0da9e2db8329972805fc39b614a4bfdf5df Mon Sep 17 00:00:00 2001 From: Catalan Lover <48515417+FSG-Cat@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:05:27 +0200 Subject: [PATCH] Fix Docker Workflow Validator only running on main repo activity. (#1159) 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]