Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
rvykydal committed Apr 17, 2024
1 parent 75ad9c7 commit f7a996a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/kickstart-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,15 @@ jobs:
env:
BODY: ${{ github.event.comment.body }}
run: |
set -eux
# detect and remove --run-disabled option
BODY=$(echo "$BODY" | head -1 | sed 's/--run-disabled//; t; q1')
if [ $? == 0 ]; then
SKIP_DISABLED=false
else
SKIP_DISABLED=true
fi
echo "skip disabled tests: $SKIP_DISABLED"
echo "skip disabled tests: ${SKIP_DISABLED}"
echo "skip_disabled=${SKIP_DISABLED}" >> $GITHUB_OUTPUT
# extract first line and cut out the "/kickstart-tests" first word
Expand Down

0 comments on commit f7a996a

Please sign in to comment.