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 7ef6fb5 commit 3ba9089Copy full SHA for 3ba9089
.github/workflows/ci.yml
@@ -70,7 +70,19 @@ jobs:
70
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
VALIDATE_CHECKOV: false
72
VALIDATE_JSCPD: false
73
- VALIDATE_JSON_PRETTIER: false
74
- VALIDATE_MARKDOWN_PRETTIER: false
75
VALIDATE_PHP_PSALM: false
76
- VALIDATE_YAML_PRETTIER: false
+
+ FIX_JSON_PRETTIER: true
+ FIX_MARKDOWN_PRETTIER: true
77
+ FIX_SHELL_SHFMT: true
78
+ FIX_YAML_PRETTIER: true
79
+ - name: Commit and push linting fixes
80
+ if: >
81
+ github.event_name == 'pull_request' &&
82
+ github.ref_name != github.event.repository.default_branch
83
+ uses: stefanzweifel/git-auto-commit-action@v5
84
+ with:
85
+ branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
86
+ commit_message: "chore: fix linting issues"
87
+ commit_user_name: super-linter
88
+ commit_user_email: [email protected]
0 commit comments