diff --git a/.github/workflows/create-template-config.yml b/.github/workflows/create-template-config.yml index 8889f92..844776e 100644 --- a/.github/workflows/create-template-config.yml +++ b/.github/workflows/create-template-config.yml @@ -15,8 +15,8 @@ # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch # # The resulting file with contain one entry for each attribute in the data model that `dependsOn` -# "Component". To include a subset of these attributes, use either `include_schemas` or -# `exclude_schemas` in the call to `datacurator::write_dca_template_config()` +# "Component". To include a subset of these attributes, use either `include_data_types` or +# `exclude_data_types` in the call to `datacurator::write_dca_template_config()` # # -------------------------------------------------------------------------------------------------- @@ -28,13 +28,13 @@ on: description: URL to a jsonld data model file required: true file: - description: Filename to save the template config + description: Directory to save the template config required: true - include_schemas: - description: Space-separated string of schemas to include in output. Must be empty if using exclude_schemas. + include_data_types: + description: Space-separated string of data types to include in output. Must be empty if using exclude_data_types. required: false - exclude_schemas: - description: Space-separated string of schemas to exclude from output. Must be empty if using include_schemas. + exclude_data_types: + description: Space-separated string of data types to exclude from output. Must be empty if using include_data_types. required: false jobs: @@ -55,8 +55,8 @@ jobs: env: data_model: ${{ inputs.data_model }} file: ${{ inputs.file }} - include_schemas: ${{ inputs.include_schemas }} - exclude_schemas: ${{ inputs.exclude_schemas }} + include_data_types: ${{ inputs.include_data_types }} + exclude_data_types: ${{ inputs.exclude_data_types }} - name: Validate Config File uses: docker://orrosenblatt/validate-json-action:latest