From 0b2d7e029fc7a46c8118c2f9954d3003b63b45ce Mon Sep 17 00:00:00 2001 From: Arthur Beck Date: Sun, 23 Feb 2025 08:36:12 -0600 Subject: [PATCH] made it not exit with an error if no changes need to be made --- .forgejo/workflows/format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/format.yml b/.forgejo/workflows/format.yml index 1b04525..678f568 100644 --- a/.forgejo/workflows/format.yml +++ b/.forgejo/workflows/format.yml @@ -16,6 +16,6 @@ jobs: run: | git config --global user.name 'Formatter' git config --global user.email 'formatter@noreply.git.verygay.fyi' - git commit -am "Automated format" + git commit -am "Automated format" || true git push \ No newline at end of file