mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2025-08-25 17:12:08 +08:00
Fix git-auto-commit.yml (#277)
This commit is contained in:
4
.github/workflows/git-auto-commit.yml
vendored
4
.github/workflows/git-auto-commit.yml
vendored
@@ -18,9 +18,9 @@ jobs:
|
|||||||
uses: ./
|
uses: ./
|
||||||
|
|
||||||
- name: "no changes detected"
|
- 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\""
|
run: "echo \"No changes detected\""
|
||||||
|
|
||||||
- name: "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\""
|
run: "echo \"Changes detected\""
|
||||||
|
Reference in New Issue
Block a user