We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba0bca commit 327e86eCopy full SHA for 327e86e
.github/workflows/Format.yml
@@ -40,10 +40,14 @@ jobs:
40
id: runic
41
run: |
42
set +e
43
- MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 2
+ MERGE_BASE=$(git merge-base origin/${{ github.base_ref }} HEAD) || exit 1
44
DIFF=$(git runic --diff $MERGE_BASE)
45
EXIT_CODE=$?
46
47
+ # debug
48
+ echo "merge base: $MERGE_BASE"
49
+ echo "diff: $DIFF"
50
+
51
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
52
echo "diff<<EOF" >> $GITHUB_OUTPUT
53
echo "$DIFF" >> $GITHUB_OUTPUT
0 commit comments