From 3b1972bc66b05a0f883d09603cc0f5a8be469b5c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 1 Nov 2025 17:55:39 +0000 Subject: [PATCH 1/2] Initial plan From 8e840b712197e86b29e8eb4daf211dabca0b4602 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 1 Nov 2025 17:58:51 +0000 Subject: [PATCH 2/2] fix: remove non-functional repository_owner comparison in PR validation The condition `github.actor != github.repository_owner` was comparing individual usernames against the organization name (OWASP-BLT), which would never match. This made the condition ineffective for skipping validation for repo owners. Individual repo owners like DonnieBLT are already explicitly listed as exceptions. Co-authored-by: DonnieBLT <128622481+DonnieBLT@users.noreply.github.com> --- .github/workflows/enforce-issue-number-in-description.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/enforce-issue-number-in-description.yml b/.github/workflows/enforce-issue-number-in-description.yml index 693d16c4ee..062800b862 100644 --- a/.github/workflows/enforce-issue-number-in-description.yml +++ b/.github/workflows/enforce-issue-number-in-description.yml @@ -20,7 +20,6 @@ jobs: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' && github.actor != 'dependabot' - && github.actor != github.repository_owner && github.actor != 'sentry-autofix' && github.actor != 'DonnieBLT' steps: