Skip to content

Commit

Permalink
fix: remove appendix functionality for tags.
Browse files Browse the repository at this point in the history
Tags should be specified in the spec, not as a distinct parameter
  • Loading branch information
jim80net committed Aug 25, 2021
1 parent ec0f91b commit 131da9e
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -573,17 +573,6 @@ function getParameters() {
Object.assign(parameters, {spec: Object.assign({}, parameters.spec, specData)});
}

tags = core.getInput('tags', {required: false});
if (tags) {
let tagsData;
try {
tagsData = JSON.parse(tags);
} catch (err) {
throw handleGetParameterErrors(err, 'tags', tagsData);
}
Object.assign(parameters, {tags: tagsData});
}

const filteredParams = _.pickBy(
parameters,
(value, key) => {
Expand Down

0 comments on commit 131da9e

Please sign in to comment.