this repo has no description

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`.

authored by

Julien Calixte and committed by
Julien Calixte
8231b1bb 9187d5ff

-1
-1
action.yml
··· 83 83 run: | 84 84 git config user.name "github-actions[bot]" 85 85 git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 86 - git add -A .sequoia-state.json 87 86 git add -A *.md **/*.md || true 88 87 if git diff --cached --quiet; then 89 88 echo "No changes to commit"