this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: quote glob in action so git stages deeply nested md files

Unquoted `**/*.md` was shell-expanded (bash globstar is off by
default), only matching one level deep. Quoting it passes the
pattern as a git pathspec, which recurses at any depth.

authored by

Julien Calixte and committed by
Julien Calixte
90bf9854 20226fe5

+1 -1
+1 -1
action.yml
··· 72 72 run: | 73 73 git config user.name "$(git log -1 --format='%an')" 74 74 git config user.email "$(git log -1 --format='%ae')" 75 - git add -A *.md **/*.md || true 75 + git add -A -- '**/*.md' || true 76 76 if git diff --cached --quiet; then 77 77 echo "No changes to commit" 78 78 else