From 7706a31db0b6ffc635fc1435fd9164771f3e41f2 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Thu, 13 Mar 2025 17:29:44 -0500 Subject: [PATCH 1/3] 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 353cd244e58f7736dbb06ce3f9009a96e47a1f45 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Thu, 13 Mar 2025 17:35:12 -0500 Subject: [PATCH 2/3] Break Markdown rules for testing --- src/pages/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/index.md b/src/pages/index.md index d02dbea7..f64e17fe 100644 --- a/src/pages/index.md +++ b/src/pages/index.md @@ -10,7 +10,6 @@ keywords: ![Commerce Testing](_images/home-bg.jpeg) # Commerce Testing - Learn how to test code for Adobe Commerce and Magento Open Source web-based storefronts. @@ -18,13 +17,12 @@ Learn how to test code for Adobe Commerce and Magento Open Source web-based stor ## Resources * [Commerce open-source projects](https://developer.adobe.com/open/magento) -* [Community Slack workspace](https://opensource.magento.com/slack) +- [Community Slack workspace](https://opensource.magento.com/slack) * [Contributor statistics](https://developer.adobe.com/open/magento/statistic) ## Overview This documentation provides resources for testing code for Adobe Commerce and Magento Open Source. - ## Discover Use these sections to learn about testing. From cadd7711da70a08a09d16aed68102206bf7f8333 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Thu, 13 Mar 2025 17:38:46 -0500 Subject: [PATCH 3/3] Add permissions to suggest changes --- .github/workflows/test-pull-request.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index dc0386c1..738c26e2 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -6,6 +6,8 @@ permissions: contents: read statuses: write + pull-requests: write + jobs: testing: