File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 3737 shell : bash
3838 run : |
3939 set -euo pipefail
40- # Nur unshallow, wenn wirklich shallow:
4140 if [ -f .git/shallow ]; then
4241 git fetch --unshallow --no-tags --prune
4342 fi
44- # Base-Ref explizit holen (ohne --depth!)
4543 git fetch --no-tags --prune origin +refs/heads/main:refs/remotes/origin/main
4644 git branch -a
4745 git rev-parse HEAD
@@ -55,12 +53,12 @@ jobs:
5553 npx changeset status --since=origin/main --verbose > .changeset-status.txt || {
5654 echo "⚠️ changeset status failed; falling back to listing existing changesets"
5755 ls -1 .changeset/*.md 2>/dev/null || true
58- exit 0
56+ : > .changeset-status.txt
5957 }
6058 {
61- echo " STATUS<<' EOF'"
59+ printf ' STATUS<<EOF\n'
6260 cat .changeset-status.txt
63- echo "EOF"
61+ printf '\nEOF\n'
6462 } >> "$GITHUB_OUTPUT"
6563
6664 - name : 💬 Upsert PR comment with preview
You can’t perform that action at this time.
0 commit comments