Skip to content

Commit

Permalink
Make Lint_Commit not fail on no commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdulon authored and Melledy committed Jul 21, 2022
1 parent 5e041b3 commit ad0225d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
# - run: git merge development
- run: git reset --hard development
- run: git stash pop
- run: git add -u
- run: git commit -m 'Fix whitespace [skip actions]'
- name: Commit any whitespace changes
run: git add -u && git commit -m 'Fix whitespace [skip actions]' || true
- name: Update Languages
run: python manage_languages.py -u
- run: git add -u
- run: git commit -m 'Update languages [skip actions]'
- name: Commit any language changes
run: git add -u && git commit -m 'Update languages [skip actions]' || true
- run: git push --set-upstream --force origin LintRatchet

0 comments on commit ad0225d

Please sign in to comment.