From 152ee1925d25e7cd39abbbe27f75d0a8f7e61d31 Mon Sep 17 00:00:00 2001 From: Shreya Gupta Date: Wed, 24 Sep 2025 20:46:11 +0000 Subject: [PATCH 1/2] feat: enforce stricter license restrictions by default - Set allow-reciprocal-licenses default to false in pr-scan workflow - Makes private repo license scanning behavior consistent with public repos - Helps catch licensing issues earlier in development process --- .github/workflows/pr-scan.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-scan.yaml b/.github/workflows/pr-scan.yaml index d7079b4..e3b10b2 100644 --- a/.github/workflows/pr-scan.yaml +++ b/.github/workflows/pr-scan.yaml @@ -38,7 +38,7 @@ on: Allows licenses classified as 'reciprocal' to be used. required: false type: boolean - default: true + default: false jobs: scan: From 89efce0be4d33e71aec940e699a29059fdbda3d0 Mon Sep 17 00:00:00 2001 From: Shreya Gupta Date: Wed, 24 Sep 2025 21:08:12 +0000 Subject: [PATCH 2/2] chore: trigger workflow validation