Skip to content

Commit

Permalink
chore: document SO_SUPPRESS_LICENSES in importer action (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanFl authored Nov 9, 2024
1 parent a181cfb commit bf9f432
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions actions/importer/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ inputs:
so_origin_endpoint_url:
description: 'URL of endpoint to be set for all imported observations.'
required: false
so_suppress_licenses:
description: 'Suppress importing license information if value is "true", default is "true".'
required: false
default: 'true'

runs:
using: 'docker'
Expand All @@ -50,3 +54,4 @@ runs:
SO_ORIGIN_SERVICE: ${{ inputs.so_origin_service }}
SO_ORIGIN_DOCKER_IMAGE_NAME_TAG: ${{ inputs.so_origin_docker_image_name_tag }}
SO_ORIGIN_ENDPOINT_URL: ${{ inputs.so_origin_endpoint_url }}
SO_SUPPRESS_LICENSES: ${{ inputs.so_suppress_licenses }}
5 changes: 5 additions & 0 deletions dev/actions/importer/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ inputs:
so_origin_endpoint_url:
description: 'URL of endpoint to be set for all imported observations.'
required: false
so_suppress_licenses:
description: 'Suppress importing license information if value is "true", default is "false".'
required: false
default: 'false'

runs:
using: 'docker'
Expand All @@ -50,3 +54,4 @@ runs:
SO_ORIGIN_SERVICE: ${{ inputs.so_origin_service }}
SO_ORIGIN_DOCKER_IMAGE_NAME_TAG: ${{ inputs.so_origin_docker_image_name_tag }}
SO_ORIGIN_ENDPOINT_URL: ${{ inputs.so_origin_endpoint_url }}
SO_SUPPRESS_LICENSES: ${{ inputs.so_suppress_licenses }}

0 comments on commit bf9f432

Please sign in to comment.