File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 88 type : boolean
99 description : Check if organization has geospatial duplicates
1010 required : true
11+ goodname :
12+ type : boolean
13+ description : Check if the shortest name to be kept
14+ required : true
1115 keep :
1216 type : choice
1317 description : ' Keep'
@@ -184,10 +188,18 @@ jobs:
184188 if ${{ inputs.geospatial }}; then
185189 args="${args} --geospatial"
186190 fi
191+
192+ if ${{ inputs.goodname }}; then
193+ args="${args} --update-name"
194+ fi
195+
187196 if ${{ inputs.keep == 'newest' }}; then
188197 args="${args} --newest"
198+ fi
199+
189200 if ! ${{ inputs.dryrun }}; then
190201 args="${args} --commit"
191202 args="${args} --api-key ${{secrets.CKAN_API_TOKEN}}"
192203 fi
193- pipenv run python duplicates-identifier-api.py $args ${{ inputs.organization }}
204+
205+ pipenv run python duplicates-identifier-api.py ${args} ${{ inputs.organization }}
You can’t perform that action at this time.
0 commit comments