From f9d681ef87e6933b91f3523f2e5e7608c941cbd9 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 18 Jul 2024 08:58:31 -0600 Subject: [PATCH] Update lint-test.yml to allow commit and push to fail if there are no changes --- .github/workflows/lint-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index a203b8e..4f0a0d1 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -36,7 +36,7 @@ jobs: git config --global user.name "Pantheon Robot" git config --global user.email "bot@getpantheon.io" git add -A - git commit -m "Apply PHP Code Beautifier changes" + git commit -m "Apply PHP Code Beautifier changes" || true # Allow commit to fail if there are no changes. git push || true # Allow push to fail if there are no changes. - name: Lint run: composer lint