File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
upstream_check :
10
+ outputs :
11
+ timestamps_changed : " {{ steps.timestamp_check.outputs.timestamps_changed }}"
10
12
runs-on : ubuntu-latest
11
13
steps :
12
14
- uses : actions/checkout@v2
@@ -39,13 +41,15 @@ jobs:
39
41
git push
40
42
41
43
build_fatimage :
42
- if : " ${{ steps.timestamp_check .outputs.timestamps_changed }} == 0"
44
+ if : " ${{ needs.upstream_check .outputs.timestamps_changed }} == 0"
43
45
needs : upstream_check
44
46
uses : ./.github/workflows/fatimage.yml
45
47
46
48
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
49
53
runs-on : ubuntu-latest
50
54
steps :
51
55
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments