Skip to content

Commit 1999f63

Browse files
🩹 [Patch]: Update Action-Test workflow to use single quotes for log group names and remove FILTER_REGEX_INCLUDE environment variable
1 parent 773590d commit 1999f63

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,14 @@ jobs:
4949
uses: PSModule/GitHub-Script@v1
5050
with:
5151
Script: |
52-
LogGroup "List files" {
52+
LogGroup 'List files' {
5353
Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
5454
}
55-
LogGroup "Commit changes" {
55+
LogGroup 'Commit changes' {
5656
git add tests/srcTestRepo/outputs/docs/
57+
git commit -m 'chore: update docs'
58+
}
59+
LogGroup 'Get changes' {
5760
git status
5861
}
5962
@@ -62,7 +65,5 @@ jobs:
6265
env:
6366
GITHUB_TOKEN: ${{ github.token }}
6467
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
65-
FILTER_REGEX_INCLUDE: ^tests/srcTestRepo/outputs/docs/.*
6668
VALIDATE_MARKDOWN: true
6769
VALIDATE_NATURAL_LANGUAGE: true
68-
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}

0 commit comments

Comments
 (0)