11
11
description : ' JSON array of images to build (required keys: dockerfile, context, name, platform)'
12
12
required : true
13
13
type : string
14
+ path_filters :
15
+ description : ' Path to the configuration file or YAML string with filters definition'
16
+ required : false
17
+ type : string
18
+ default : ' **/*'
19
+ path_filters_base :
20
+ description : |
21
+ Git reference (e.g. branch name) against which the changes will be detected. Defaults to the current branch.
22
+ If it references same branch it was pushed to, changes are detected against the most recent commit before the push.
23
+ This option is ignored if action is triggered by pull_request event.
24
+ required : false
25
+ type : string
26
+ default : ${{ github.ref }}
14
27
15
28
jobs :
16
29
prep :
@@ -21,13 +34,29 @@ jobs:
21
34
image-tag : ${{ steps.build-tags.outputs.IMAGE_TAG }}
22
35
images : ${{ steps.parse-images.outputs.images }}
23
36
envs : ${{ steps.parse-envs.outputs.envs }}
37
+ run_build : ${{ steps.filter.outputs.run_on }}
24
38
permissions :
25
39
id-token : write
26
40
contents : read
27
41
steps :
28
42
- uses : actions/checkout@v4
29
43
with :
30
44
fetch-depth : 0
45
+ - name : Parse filters
46
+ id : parse_filters
47
+ uses : actions/github-script@v7
48
+ with :
49
+ script : |
50
+ const filters = `${{ inputs.path_filters }}`.split(',').map(f => f.trim());
51
+ const filtersStr = "run_on:\n" + filters.map(f => ` - '${f}'`).join('\n');
52
+ core.setOutput('filters', filtersStr);
53
+ - uses : dorny/paths-filter@v3
54
+ id : filter
55
+ with :
56
+ filters : |
57
+ ${{ steps.parse_filters.outputs.filters }}
58
+ base : ${{ inputs.path_filters_base }}
59
+ list-files : json
31
60
- name : Get build tag
32
61
id : build-tags
33
62
run : |
55
84
- ${{ matrix.image.platform == 'linux/amd64' && 'X64' || 'ARM64' }}
56
85
env :
57
86
IMAGE_TAG : ${{ needs.prep.outputs.image-tag }}
58
- if : needs.prep.outputs.image-tag != '' && needs.prep.outputs.image-tag != 'sha-' && needs.prep.outputs.images != '[]'
87
+ if : needs.prep.outputs.run_build == 'true' && needs.prep.outputs. image-tag != '' && needs.prep.outputs.image-tag != 'sha-' && needs.prep.outputs.images != '[]'
59
88
permissions :
60
89
id-token : write
61
90
contents : read
0 commit comments