We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f07263 commit 10a1cafCopy full SHA for 10a1caf
1 file changed
action.yml
@@ -300,7 +300,8 @@ runs:
300
git checkout --orphan coverage
301
git rm -rf --cached . >/dev/null 2>&1 || true
302
echo '# Coverage branch' > README.md
303
- git add README.md
+ # Force-add so bootstrap works even if README.md is ignored in source repo rules.
304
+ git add -f README.md
305
git -c commit.gpgsign=false commit -m 'Add README.md'
306
# Push with auth via checkout action's token/remote config.
307
# If another concurrent run creates 'coverage' first, treat that as success.
0 commit comments