From cc9bdcbfbc0a89019376b5179d118b61de235407 Mon Sep 17 00:00:00 2001 From: Bret Fisher Date: Thu, 18 Sep 2025 14:54:47 -0400 Subject: [PATCH 1/2] Clarify permissions in call-super-linter.yaml Added comments to clarify permissions for the Super-Linter job. --- .github/workflows/call-super-linter.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/call-super-linter.yaml b/.github/workflows/call-super-linter.yaml index 4674256..5392978 100644 --- a/.github/workflows/call-super-linter.yaml +++ b/.github/workflows/call-super-linter.yaml @@ -13,7 +13,9 @@ jobs: call-super-linter: name: Call Super-Linter - + + # all other permissions not listed are set to `none` + # https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#permissions permissions: contents: read # clone the repo to lint statuses: write #read/write to repo custom statuses From 8255464cf6fb102b3dc76d8641b1c9ff63e0e3bf Mon Sep 17 00:00:00 2001 From: Bret Fisher Date: Thu, 18 Sep 2025 14:58:20 -0400 Subject: [PATCH 2/2] Breaking statuses permission in call-super-linter.yaml --- .github/workflows/call-super-linter.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/call-super-linter.yaml b/.github/workflows/call-super-linter.yaml index 5392978..b0a631c 100644 --- a/.github/workflows/call-super-linter.yaml +++ b/.github/workflows/call-super-linter.yaml @@ -18,7 +18,7 @@ jobs: # https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#permissions permissions: contents: read # clone the repo to lint - statuses: write #read/write to repo custom statuses + statuses: none #read/write to repo custom statuses ### use Reusable Workflows to call my workflow remotely ### https://docs.github.com/en/actions/learn-github-actions/reusing-workflows