We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 455bc26 commit b233502Copy full SHA for b233502
‎.github/workflows/Action-Test.yml‎
@@ -53,6 +53,10 @@ jobs:
53
LogGroup 'List files' {
54
Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
55
}
56
+ LogGroup 'Create lint branch' {
57
+ git branch -D lint -f 2>$null
58
+ git checkout -b lint
59
+ }
60
LogGroup 'Commit changes for linting' {
61
git add .
62
git commit -m 'Stage changes for linting'
@@ -65,7 +69,7 @@ jobs:
65
69
uses: super-linter/super-linter/slim@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # v8.2.0
66
70
env:
67
71
GITHUB_TOKEN: ${{ github.token }}
68
- DEFAULT_BRANCH: ${{ github.ref }}
72
+ DEFAULT_BRANCH: lint
73
VALIDATE_ALL_CODEBASE: true
74
VALIDATE_MARKDOWN: true
75
VALIDATE_NATURAL_LANGUAGE: true
0 commit comments