Skip to content

Commit 86fb2e1

Browse files
authored
Fix git-auto-commit.yml (stefanzweifel#277)
1 parent aeb1802 commit 86fb2e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/git-auto-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
uses: ./
1919

2020
- name: "no changes detected"
21-
if: steps.auto-commit-action.outputs.changes_detected == false
21+
if: steps.auto-commit-action.outputs.changes_detected == 'false'
2222
run: "echo \"No changes detected\""
2323

2424
- name: "changes detected"
25-
if: steps.auto-commit-action.outputs.changes_detected == true
25+
if: steps.auto-commit-action.outputs.changes_detected == 'true'
2626
run: "echo \"Changes detected\""

0 commit comments

Comments
 (0)