5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-14 05:53:46 +00:00

fix(extends): missing reserved keyword fix

This commit is contained in:
Geoffrey.C 2020-01-04 11:55:19 +08:00 committed by GitHub
parent fcaa8ba03a
commit 1436f60689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ exports.handleExtendsOption = () => {
const extendsOption = {}; const extendsOption = {};
const _extends = core.getInput(inputs.extends); const _extends = core.getInput(inputs.extends);
if (extends) { if (_extends) {
extendsOption.extends = _extends; extendsOption.extends = _extends;
} }