We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb1802 commit 86fb2e1Copy full SHA for 86fb2e1
.github/workflows/git-auto-commit.yml
@@ -18,9 +18,9 @@ jobs:
18
uses: ./
19
20
- name: "no changes detected"
21
- if: steps.auto-commit-action.outputs.changes_detected == false
+ if: steps.auto-commit-action.outputs.changes_detected == 'false'
22
run: "echo \"No changes detected\""
23
24
- name: "changes detected"
25
- if: steps.auto-commit-action.outputs.changes_detected == true
+ if: steps.auto-commit-action.outputs.changes_detected == 'true'
26
run: "echo \"Changes detected\""
0 commit comments