Commit ad0225df authored by AnimeGitB's avatar AnimeGitB Committed by Melledy
Browse files

Make Lint_Commit not fail on no commit

parent 5e041b33
......@@ -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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment