ci: Do not fail when trying to update the checklist

This commit is contained in:
zontreck 2025-03-26 02:54:55 -07:00
parent 174a08486e
commit 08578d498c

4
Jenkinsfile vendored
View file

@ -87,8 +87,8 @@ pipeline {
#!/bin/bash #!/bin/bash
git add COMPLETED.md git add COMPLETED.md
git commit -m "[BOT] Update completed.md" git commit -m "[BOT] Update completed.md" || true
git push git push || true
''' '''
} }
} }