diff --git a/action.yml b/action.yml index ea8e38e..a8b3386 100644 --- a/action.yml +++ b/action.yml @@ -41,6 +41,12 @@ inputs: and that the "subject-digest" parameter be specified. Defaults to false. default: false required: false + create-storage-record: + description: > + Whether to create a storage record for the artifact. + Requires that push-to-registry is set to true. Defaults to true. + default: true + required: false show-summary: description: > Whether to attach a list of generated attestations to the workflow run @@ -85,5 +91,6 @@ runs: predicate-path: ${{ steps.generate-sbom-predicate.outputs.predicate-path }} push-to-registry: ${{ inputs.push-to-registry }} + create-storage-record: ${{ inputs.create-storage-record }} show-summary: ${{ inputs.show-summary }} github-token: ${{ inputs.github-token }}