From 066fd114497d9e73c7a38c9d8ad3e9c4694b5f11 Mon Sep 17 00:00:00 2001 From: rope Date: Tue, 19 May 2026 19:54:21 +0100 Subject: [PATCH] update workflow: always commit so scheduled runs have a consistent label Co-Authored-By: Claude Opus 4.6 --- .forgejo/workflows/update.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.forgejo/workflows/update.yml b/.forgejo/workflows/update.yml index ce19b27..823b067 100644 --- a/.forgejo/workflows/update.yml +++ b/.forgejo/workflows/update.yml @@ -37,12 +37,8 @@ jobs: - name: Commit and push run: | set -euxo pipefail - if git diff --quiet flake.lock; then - echo "No changes to flake.lock — skipping commit." - exit 0 - fi git config user.name 'forgejo-actions[bot]' git config user.email 'actions@forg.gregersen.it' git add flake.lock - git commit -m 'flake: update inputs' + git commit --allow-empty -m 'Update flake inputs' git push