Skip to content

Commit

Permalink
print callable
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicfraser committed Jan 23, 2024
1 parent fbd9217 commit bf867b5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ jobs:
# run: exit -1

- name: Print status
if: steps.step-one.result == 'success'
run: echo "jobs.call-workflow.result"

- name: Print hello
if: steps.step-one.result == 'success'
run: echo "hello"
- name: Print hello if success
if: steps.call-workflow.result == 'success'
run: echo "success"

- name: Print hello if skipped
if: steps.call-workflow.result == 'skipped'
run: echo "skipped"

# - name: No files in matcher have been modified
# if: steps.changed-files.outputs.any_modified != 'true'
Expand Down

0 comments on commit bf867b5

Please sign in to comment.