From e291c2de61f1c890180a9f6557c0f0e14d1dd704 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 27 Apr 2026 19:16:02 -0400 Subject: [PATCH 1/3] Run superlinter for natural language, markdown, etc --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..92eb0c1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Test +on: + push: + pull_request: + workflow_dispatch: +permissions: {} + +jobs: + super-lint: + permissions: { contents: read, packages: read, statuses: write } + runs-on: ubuntu-latest + steps: + - uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0 + with: { egress-policy: audit } + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: { persist-credentials: false } + - uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0 + env: + GITHUB_TOKEN: ${{ github.token }} + VALIDATE_GIT_COMMITLINT: false # commitlint is bad From 2f0d7a4408c1a974e9ceb236f16f35a550fec632 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 27 Apr 2026 19:23:13 -0400 Subject: [PATCH 2/3] Superlinter (by default) requires full git history Teach it to work on just the files in place by using find instead of git vars. https://github.com/super-linter/super-linter/issues/7282 --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 92eb0c1..3114bef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,4 +17,5 @@ jobs: - uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0 env: GITHUB_TOKEN: ${{ github.token }} + USE_FIND_ALGORITHM: true # support detached-head checkouts VALIDATE_GIT_COMMITLINT: false # commitlint is bad From 702a3a4df4a1d794ced433f90d7ef0d494f8cd78 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 27 Apr 2026 19:40:33 -0400 Subject: [PATCH 3/3] Prettier markdown --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2fa50ef..79fbd6b 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,3 @@ This repository houses special files related to Test Double's open source presen The files in docs/ will be used as the defaults for [@testdouble](https://github.com/testdouble) repositories that do not have their own file of that type. [Default Community Health Files - GitHub Docs](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file) -