From 7706a31db0b6ffc635fc1435fd9164771f3e41f2 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Thu, 13 Mar 2025 17:29:44 -0500 Subject: [PATCH 1/2] Enable suggested fixes for Markdown --- .github/super-linter.env | 1 + .gitignore | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/super-linter.env b/.github/super-linter.env index 38024130..49c3cb62 100644 --- a/.github/super-linter.env +++ b/.github/super-linter.env @@ -5,3 +5,4 @@ VALIDATE_GITHUB_ACTIONS=true VALIDATE_JSON=true VALIDATE_MARKDOWN=true VALIDATE_YAML=true +FIX_MARKDOWN=true diff --git a/.gitignore b/.gitignore index 7de6cd62..2da8e901 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,11 @@ cypress/screenshots # lerna lerna-debug.log -tmp \ No newline at end of file +tmp + +# Super-linter outputs +super-linter-output +super-linter.log + +# GitHub Actions leftovers +github_conf From 13459f2fdb5ae54f939119659a56adeb093ab453 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Thu, 13 Mar 2025 17:39:32 -0500 Subject: [PATCH 2/2] Add permissions to suggest changes --- .github/super-linter.env | 2 +- .github/workflows/test-pull-request.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/super-linter.env b/.github/super-linter.env index 49c3cb62..4a917960 100644 --- a/.github/super-linter.env +++ b/.github/super-linter.env @@ -1,3 +1,4 @@ +FIX_MARKDOWN=true IGNORE_GITIGNORED_FILES=true MARKDOWN_CONFIG_FILE=.markdownlint.yml VALIDATE_ALL_CODEBASE=false @@ -5,4 +6,3 @@ VALIDATE_GITHUB_ACTIONS=true VALIDATE_JSON=true VALIDATE_MARKDOWN=true VALIDATE_YAML=true -FIX_MARKDOWN=true diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index dc0386c1..9c5a35f4 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -6,6 +6,7 @@ permissions: contents: read statuses: write + pull-requests: write jobs: testing: