File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 upstream_check :
10+ outputs :
11+ timestamps_changed : " {{ steps.timestamp_check.outputs.timestamps_changed }}"
1012 runs-on : ubuntu-latest
1113 steps :
1214 - uses : actions/checkout@v2
@@ -39,13 +41,15 @@ jobs:
3941 git push
4042
4143 build_fatimage :
42- if : " ${{ steps.timestamp_check .outputs.timestamps_changed }} == 0"
44+ if : " ${{ needs.upstream_check .outputs.timestamps_changed }} == 0"
4345 needs : upstream_check
4446 uses : ./.github/workflows/fatimage.yml
4547
4648 ci_and_pr :
47- if : " ${{ steps.timestamp_check.outputs.timestamps_changed }} == 0"
48- needs : build_fatimage
49+ if : " ${{ needs.upstream_check.outputs.timestamps_changed }} == 0"
50+ needs :
51+ - upstream_check
52+ - build_fatimage
4953 runs-on : ubuntu-latest
5054 steps :
5155 - uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments