Skip to content

Commit f41730e

Browse files
committed
test
1 parent f4d30f9 commit f41730e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/alioss-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
git switch -c check_branch
2424
2525
# Get the diff of the changes
26-
DIFF=$(git diff origin/$GITHUB_BASE_REF check_branch -- . ':(exclude).github/workflows/alioss-check.yml')
26+
echo Get the diff of the changes
27+
DIFF=$(git diff origin/$GITHUB_BASE_REF check_branch -- . ':(exclude).github/workflows/alioss-check.yml')
2728
2829
if [ -z "$DIFF" ]; then
2930
echo "No changes detected."
@@ -32,6 +33,7 @@ jobs:
3233
3334
# Check the diff for alioss
3435
echo "$DIFF" | grep 'alioss' > check.log
36+
cat check.log
3537
if [ $(wc -l < check.log> -eq 0)]; then
3638
echo "No alioss found in changed content."
3739
else

0 commit comments

Comments
 (0)