From 08578d498c739d75ac8e38d1cb2c87125b5303fa Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 26 Mar 2025 02:54:55 -0700 Subject: [PATCH] ci: Do not fail when trying to update the checklist --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f4e1d99..4fbbca8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -87,8 +87,8 @@ pipeline { #!/bin/bash git add COMPLETED.md - git commit -m "[BOT] Update completed.md" - git push + git commit -m "[BOT] Update completed.md" || true + git push || true ''' } }