Add @actions/exec

This commit is contained in:
Stefan Zweifel 2020-02-11 21:00:40 +01:00
parent cca75e0840
commit 844e852dde
3 changed files with 1184 additions and 6 deletions

1172
dist/index.js vendored

File diff suppressed because it is too large Load Diff

15
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "javascript-action",
"name": "@stefanzweifel/git-auto-commit-action",
"version": "3.0.0",
"lockfileVersion": 1,
"requires": true,
@ -9,6 +9,19 @@
"resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.2.tgz",
"integrity": "sha512-IbCx7oefq+Gi6FWbSs2Fnw8VkEI6Y4gvjrYprY3RV//ksq/KPMlClOerJ4jRosyal6zkUIc8R9fS/cpRMlGClg=="
},
"@actions/exec": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.3.tgz",
"integrity": "sha512-TogJGnueOmM7ntCi0ASTUj4LapRRtDfj57Ja4IhPmg2fls28uVOPbAn8N+JifaOumN2UG3oEO/Ixek2A4NcYSA==",
"requires": {
"@actions/io": "^1.0.1"
}
},
"@actions/io": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.2.tgz",
"integrity": "sha512-J8KuFqVPr3p6U8W93DOXlXW6zFvrQAJANdS+vw0YhusLIq+bszW8zmK2Fh1C2kDPX8FMvwIl1OUcFgvJoXLbAg=="
},
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",

View File

@ -24,7 +24,8 @@
},
"homepage": "https://github.com/stefanzweifel/git-auto-commit-action#readme",
"dependencies": {
"@actions/core": "^1.1.1"
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.3"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",