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\""