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 f4d30f9 commit f41730eCopy full SHA for f41730e
.github/workflows/alioss-check.yml
@@ -23,7 +23,8 @@ jobs:
23
git switch -c check_branch
24
25
# Get the diff of the changes
26
- DIFF=$(git diff origin/$GITHUB_BASE_REF check_branch -- . ':(exclude).github/workflows/alioss-check.yml')
+ echo Get the diff of the changes
27
+ DIFF=$(git diff origin/$GITHUB_BASE_REF check_branch -- . ':(exclude).github/workflows/alioss-check.yml')
28
29
if [ -z "$DIFF" ]; then
30
echo "No changes detected."
@@ -32,6 +33,7 @@ jobs:
32
33
34
# Check the diff for alioss
35
echo "$DIFF" | grep 'alioss' > check.log
36
+ cat check.log
37
if [ $(wc -l < check.log> -eq 0)]; then
38
echo "No alioss found in changed content."
39
else
0 commit comments