Skip to content

Commit 327e86e

Browse files
committed
Debug issue with formatter.
[ci skip]
1 parent 9ba0bca commit 327e86e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Format.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ jobs:
4040
id: runic
4141
run: |
4242
set +e
43-
MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 2
43+
MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 1
4444
DIFF=$(git runic --diff $MERGE_BASE)
4545
EXIT_CODE=$?
4646
47+
# debug
48+
echo "merge base: $MERGE_BASE"
49+
echo "diff: $DIFF"
50+
4751
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
4852
echo "diff<<EOF" >> $GITHUB_OUTPUT
4953
echo "$DIFF" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)