File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 36
36
concurrent_skipping : ' never'
37
37
skip_after_successful_duplicate : ' true'
38
38
paths_ignore : ' ["**/README.md", "**/docs/**"]'
39
- do_not_skip : ' ["pull_request", "workflow_dispatch", "schedule"]'
39
+
40
+ - name : Print outputs
41
+ run : |
42
+ echo '::group::should_skip'
43
+ echo '${{ steps.skip_check.outputs.should_skip }}'
44
+ echo '::endgroup::'
45
+
46
+ echo '::group::reason'
47
+ echo '${{ steps.skip_check.outputs.reason }}'
48
+ echo '::endgroup::'
49
+
50
+ echo '::group::skipped_by'
51
+ echo '${{ toJSON(fromJSON(steps.skip_check.outputs.skipped_by)) }}'
52
+ echo '::endgroup::'
53
+
54
+ echo '::group::paths_result'
55
+ echo '${{ toJSON(fromJSON(steps.skip_check.outputs.paths_result)) }}'
56
+ echo '::endgroup::'
57
+
58
+ echo '::group::changed_files'
59
+ echo '${{ toJSON(fromJSON(steps.skip_check.outputs.changed_files)) }}'
60
+ echo '::endgroup::'
40
61
41
62
main_job :
42
63
needs : pre_job
You can’t perform that action at this time.
0 commit comments