Skip to content

Commit e1df8c3

Browse files
committed
XYZ-12345 updated commit
1 parent 2fe968f commit e1df8c3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/pipeline.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
with:
1414
fetch-depth: 0
1515
ref: main
16+
1617
- name: Super-linter
1718
uses: super-linter/super-linter@v7.1.0
1819
env:
@@ -24,6 +25,15 @@ jobs:
2425
FIX_NATURAL_LANGUAGE: true
2526
FIX_SHELL_SHFMT: true
2627
FIX_YAML_PRETTIER: true
28+
29+
- name: Commit linting fixes
30+
if: github.ref_name != 'main'
31+
run: |
32+
git add -A
33+
git commit -m "chore: fix linting issues"
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.WF_TOKEN }}
36+
2737
- name: Commit and push linting fixes
2838
if: github.ref_name != 'main'
2939
uses: stefanzweifel/git-auto-commit-action@v5
@@ -32,6 +42,7 @@ jobs:
3242
commit_message: "chore: fix linting issues"
3343
commit_user_name: Wesley Scholl
3444
commit_user_email: wscholl@totalwine.com
45+
3546
- name: Merge branch
3647
uses: julbme/gh-action-merge-branch@v1
3748
with:

0 commit comments

Comments
 (0)