Skip to content

Commit 9ce26b8

Browse files
committed
add default platforms to action
1 parent 79e72c6 commit 9ce26b8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/actions/certify-openshift-image/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
platforms:
1919
description: A comma separated list of architectures in the image manifest to certify
2020
required: false
21-
default: ""
21+
default: "amd64,arm64,ppc64le,s390x"
2222
submit:
2323
description: Submit results to Redhat PYAXIS
2424
required: false

.github/workflows/certify-ubi-image.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
required: false
1919
type: string
2020
default: "1.11.1"
21+
platforms:
22+
description: A comma separated list of architectures in the image manifest to certify
23+
required: false
24+
default: "amd64,arm64,ppc64le,s390x"
2125
push:
2226
branches:
2327
- certify-updates
@@ -45,4 +49,4 @@ jobs:
4549
pyxis_token: ${{ secrets.PYXIS_API_TOKEN }}
4650
preflight_version: ${{ inputs.preflight_version || '1.11.1' }}
4751
submit: ${{ inputs.submit || true }}
48-
platforms: "amd64,arm64,ppc64le,s390x"
52+
platforms: ${{ inputs.platforms || 'amd64,arm64,ppc64le,s390x' }}

0 commit comments

Comments
 (0)