We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29943f5 commit cbf0db9Copy full SHA for cbf0db9
1 file changed
.github/workflows/ci-main.yml
@@ -75,7 +75,12 @@ jobs:
75
pr_num=$(echo "$GITHUB_REF_NAME" | sed 's|/.*||g')
76
echo "export CI_PULL_REQUEST=${pr_num}" >> pr/env.sh
77
echo "export CI_COMMIT=${GITHUB_SHA}" >> pr/env.sh
78
- cat $GITHUB_ACTIONS
+ echo 'log parents'
79
+ git log -n 3
80
+ echo 'log parents first'
81
+ git log -n 3 --first-parent
82
+
83
+ cat $GITHUB_EVENT_PATH
84
85
find topics/ -name tutorial.md | xargs -n 1 python bin/check-broken-boxes.py | reviewdog -efm="%f:%l: %m" -filter-mode=file -reporter=github-pr-review -fail-level=error | tee ./pr/reviewdog.txt
86
set -o pipefail
0 commit comments