From 8231b1bb3cfb9191b3d2511df65d4d1889b6bfea Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 8 Feb 2026 13:44:23 +0100 Subject: [PATCH] fix: stop committing .sequoia-state.json in GitHub Action The state file is rebuilt from the PDS by `sequoia sync` on every run, so committing it is unnecessary and caused failures when .gitignore blocked the `git add`. --- action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yml b/action.yml index 913b1a4..6e902b2 100644 --- a/action.yml +++ b/action.yml @@ -83,7 +83,6 @@ runs: run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add -A .sequoia-state.json git add -A *.md **/*.md || true if git diff --cached --quiet; then echo "No changes to commit" -- 2.51.2