Skip to content

Commit a07fed7

Browse files
feat: embed path filtering into Argus builder workflow (#268)
1 parent 099e5d6 commit a07fed7

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

.github/workflows/argus-docker-build.yaml

+30-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ on:
1111
description: 'JSON array of images to build (required keys: dockerfile, context, name, platform)'
1212
required: true
1313
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 }}
1427

1528
jobs:
1629
prep:
@@ -21,13 +34,29 @@ jobs:
2134
image-tag: ${{ steps.build-tags.outputs.IMAGE_TAG }}
2235
images: ${{ steps.parse-images.outputs.images }}
2336
envs: ${{ steps.parse-envs.outputs.envs }}
37+
run_build: ${{ steps.filter.outputs.run_on }}
2438
permissions:
2539
id-token: write
2640
contents: read
2741
steps:
2842
- uses: actions/checkout@v4
2943
with:
3044
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
3160
- name: Get build tag
3261
id: build-tags
3362
run: |
@@ -55,7 +84,7 @@ jobs:
5584
- ${{ matrix.image.platform == 'linux/amd64' && 'X64' || 'ARM64' }}
5685
env:
5786
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 != '[]'
5988
permissions:
6089
id-token: write
6190
contents: read

0 commit comments

Comments
 (0)