From ef360b05068734a58340b103848dcd330228321c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 28 Mar 2024 08:45:17 +0200 Subject: [PATCH] chore(workflow): allow last step to fail --- .github/workflows/cheatsheets.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cheatsheets.yaml b/.github/workflows/cheatsheets.yaml index 77bcded7..ad4dc7a3 100644 --- a/.github/workflows/cheatsheets.yaml +++ b/.github/workflows/cheatsheets.yaml @@ -2,7 +2,7 @@ on: workflow_dispatch: schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" push: branches: [main] pull_request: @@ -28,6 +28,7 @@ jobs: bash .github/run.sh echo "Done" - name: Commit and push changes + continue-on-error: true run: | git add . git commit -m "Update cheatsheets"