Skip to content

Commit

Permalink
Prepare release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Cipollo committed May 25, 2020
1 parent 8954a2e commit 2bea8f5
Show file tree
Hide file tree
Showing 582 changed files with 114,630 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules/
__tests__/runner/*
# node_modules/
# __tests__/runner/*

# Created by https://www.gitignore.io/api/webstorm
# Edit at https://www.gitignore.io/?templates=webstorm
Expand Down
10 changes: 10 additions & 0 deletions lib/Inputs.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class CoreInputs {
return [];
}
get body() {
if (CoreInputs.omitBody())
return undefined;
const body = core.getInput('body');
if (body) {
return body;
Expand All @@ -44,6 +46,9 @@ class CoreInputs {
}
return '';
}
static omitBody() {
return core.getInput('omitBody') == 'true';
}
get commit() {
return core.getInput('commit');
}
Expand All @@ -52,12 +57,17 @@ class CoreInputs {
return draft == 'true';
}
get name() {
if (CoreInputs.omitName())
return undefined;
const name = core.getInput('name');
if (name) {
return name;
}
return this.tag;
}
static omitName() {
return core.getInput('omitName') == 'true';
}
get prerelease() {
const preRelease = core.getInput('prerelease');
return preRelease == 'true';
Expand Down
1 change: 1 addition & 0 deletions node_modules/.bin/semver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/which

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

609 changes: 609 additions & 0 deletions node_modules/.yarn-integrity

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions node_modules/@actions/core/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

81 changes: 81 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/@actions/core/lib/command.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions node_modules/@actions/core/lib/command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/@actions/core/lib/command.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 73 additions & 0 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2bea8f5

Please sign in to comment.