Skip to content

Commit

Permalink
Fix git-auto-commit.yml (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcong1993 committed Jan 3, 2023
1 parent aeb1802 commit 86fb2e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/git-auto-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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\""

0 comments on commit 86fb2e1

Please sign in to comment.