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 b1ff09e commit 309d367Copy full SHA for 309d367
.github/workflows/ci_lint.yml
@@ -29,12 +29,12 @@ jobs:
29
echo "$response" | jq -r '.[].filename' > filenames.txt
30
cat filenames.txt
31
32
- if grep "controls/" filenames.txt; then
+ if grep -q "controls/" filenames.txt; then
33
echo "CONTROLS_CHANGES=true" >> $GITHUB_ENV
34
else
35
echo "CONTROLS_CHANGES=false" >> $GITHUB_ENV
36
fi
37
- if grep "\.profile" filenames.txt; then
+ if grep -q "\.profile" filenames.txt; then
38
echo "PROFILES_CHANGES=true" >> $GITHUB_ENV
39
40
echo "PROFILES_CHANGES=false" >> $GITHUB_ENV
0 commit comments