Commit b43ab28 1 parent 0eaccf1 commit b43ab28 Copy full SHA for b43ab28
File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
branches :
8
8
- main
9
- paths :
10
- - kubernetes/apps/**
11
- - kubernetes/flux/**
12
9
13
10
concurrency :
14
11
group : ${{ github.workflow }}-${{ github.event.number || github.ref }}
18
15
HOMEBREW_NO_ANALYTICS : " 1"
19
16
20
17
jobs :
18
+ filter-changes :
19
+ name : Filter changes
20
+ runs-on : ubuntu-latest
21
+ outputs :
22
+ any_changed : ${{ steps.changed-files.outputs.any_changed }}
23
+ steps :
24
+ - name : Checkout
25
+ uses : actions/checkout@v4
26
+
27
+ - name : Get Changed Files
28
+ id : changed-files
29
+ uses : tj-actions/changed-files@v45
30
+ with :
31
+ files : kubernetes/**
32
+
21
33
extract-images :
34
+ if : ${{ needs.filter-changes.outputs.any_changed == 'true' }}
22
35
name : Extract Images
23
36
runs-on : ubuntu-latest
37
+ needs :
38
+ - filter-changes
24
39
strategy :
25
40
matrix :
26
41
branches :
You can’t perform that action at this time.
0 commit comments