Skip to content

Commit 25bfe1f

Browse files
🩹 [Patch]: Comment out Get changes step in Action-Test workflow and update VALIDATE_ALL_CODEBASE environment variable to true
1 parent a07d90a commit 25bfe1f

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

‎.github/workflows/Action-Test.yml‎

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,25 @@ jobs:
4646
WorkingDirectory: tests/srcTestRepo
4747
ShowSummaryOnSuccess: true
4848

49-
- name: Get changes
50-
uses: PSModule/GitHub-Script@v1
51-
with:
52-
Script: |
53-
LogGroup 'List files' {
54-
Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
55-
}
56-
LogGroup 'Commit changes for linting' {
57-
git add .
58-
git commit -m 'Stage changes for linting'
59-
}
60-
LogGroup 'Get changes' {
61-
git status
62-
}
49+
# - name: Get changes
50+
# uses: PSModule/GitHub-Script@v1
51+
# with:
52+
# Script: |
53+
# LogGroup 'List files' {
54+
# Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
55+
# }
56+
# LogGroup 'Commit changes for linting' {
57+
# git add .
58+
# git commit -m 'Stage changes for linting'
59+
# }
60+
# LogGroup 'Get changes' {
61+
# git status
62+
# }
6363

6464
- name: Lint documentation
6565
uses: super-linter/super-linter/slim@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # v8.2.0
6666
env:
6767
GITHUB_TOKEN: ${{ github.token }}
68-
DEFAULT_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}
69-
VALIDATE_ALL_CODEBASE: false
68+
VALIDATE_ALL_CODEBASE: true
7069
VALIDATE_MARKDOWN: true
7170
VALIDATE_NATURAL_LANGUAGE: true
72-
FILTER_REGEX_INCLUDE: ^tests/srcTestRepo/outputs/docs/.*

0 commit comments

Comments
 (0)