1
0
mirror of https://github.com/stefanzweifel/git-auto-commit-action.git synced 2026-02-02 19:07:15 +08:00
This commit is contained in:
Stefan Zweifel
2020-03-03 21:04:57 +01:00
parent 25e6f0b17d
commit eef5f33ea3

View File

@@ -13,5 +13,10 @@ jobs:
id: "auto-commit-action"
uses: ./
- name: "outputs"
run: "echo \"${{ steps.auto-commit-action.outputs.changes_detected }}\""
- name: "no changes detected"
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
run: "echo \"Changes detected\""