File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 64
64
{
65
65
"type": "object",
66
66
"additionalProperties": {
67
- type: "object",
67
+ "type": "object",
68
+ "additionalProperties": false,
68
69
"properties": {
69
70
"context": { "type": "string" },
70
71
"dockerfile": { "type": "string" },
95
96
"type": "array",
96
97
"items": { "type": "string" }
97
98
},
99
+ "skip_manifest_update": { "type": "boolean" }
98
100
},
99
101
"required": ["context", "dockerfile"]
100
102
}
@@ -230,7 +232,7 @@ jobs:
230
232
result-encoding : string
231
233
script : |
232
234
const images = ${{ needs.prep.outputs.images }};
233
- const argusRootDirs = images.filter(image => image.should_build).map(image => image.argus_root);
235
+ const argusRootDirs = images.filter(image => image.should_build && !image.skip_manifest_update ).map(image => image.argus_root);
234
236
console.log('Argus root dirs:', argusRootDirs);
235
237
return argusRootDirs.join(',');
236
238
You can’t perform that action at this time.
0 commit comments