Fix git-auto-commit.yml

This commit is contained in:
cong 2023-01-03 11:48:33 +08:00 committed by zcong1993
parent aeb1802648
commit 629b9f4da0
No known key found for this signature in database
GPG Key ID: 2F06DD61C5AB852A
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ jobs:
uses: ./
- name: "no changes detected"
if: steps.auto-commit-action.outputs.changes_detected == false
if: steps.auto-commit-action.outputs.changes_detected == 'false'
run: "echo \"No changes detected\""
- name: "changes detected"
if: steps.auto-commit-action.outputs.changes_detected == true
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: "echo \"Changes detected\""