Skip to content

Commit

Permalink
Debug issue with formatter.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
maleadt committed Jan 20, 2025
1 parent 9ba0bca commit 327e86e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/Format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,14 @@ jobs:
id: runic
run: |
set +e
MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 2
MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 1
DIFF=$(git runic --diff $MERGE_BASE)
EXIT_CODE=$?
# debug
echo "merge base: $MERGE_BASE"
echo "diff: $DIFF"
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
echo "diff<<EOF" >> $GITHUB_OUTPUT
echo "$DIFF" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 327e86e

Please sign in to comment.