From 3bf58e35329ad223878d1129924df9047023984c Mon Sep 17 00:00:00 2001 From: TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> Date: Tue, 25 May 2021 13:23:17 -0600 Subject: ignore error when commiting nothing in workflow --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit