diff options
| author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-25 13:23:17 -0600 |
|---|---|---|
| committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-25 13:23:17 -0600 |
| commit | 3bf58e35329ad223878d1129924df9047023984c (patch) | |
| tree | 68670a2c54042e0a7a886a3865db402425561278 /.github/workflows | |
| parent | 820d583eb753eb5ce725a8f080d3ec36b2b14c9b (diff) | |
| download | tanzanite-3bf58e35329ad223878d1129924df9047023984c.tar.gz tanzanite-3bf58e35329ad223878d1129924df9047023984c.tar.bz2 tanzanite-3bf58e35329ad223878d1129924df9047023984c.zip | |
ignore error when commiting nothing in workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/nodejs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index b5f4951..ff4aa95 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -49,7 +49,7 @@ jobs: - name: Format and commit code if needed run: | yarn format - git commit -am "Automatically format code" + git commit -am "Automatically format code" || true - name: Push changes uses: ad-m/github-push-action@master with: |
