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 ecf3e6a commit 8e8ce16Copy full SHA for 8e8ce16
.github/workflows/default-ruleset.yml
@@ -41,7 +41,9 @@ jobs:
41
id: detect
42
run: |-
43
git add .
44
- git diff --staged --patch --exit-code || echo "mutation-happened=true" >> "${GITHUB_OUTPUT}"
+ mutated='false'
45
+ git diff --staged --patch --exit-code || mutated='true'
46
+ echo "mutation-happened=${mutated}" >> "${GITHUB_OUTPUT}"
47
48
##########################################################################
49
# Creating a PR with the changes if there are any
0 commit comments