Add action

This commit is contained in:
Peter Evans
2019-11-08 10:37:57 +09:00
parent 4d84287ffa
commit 0ae1c4b014
9 changed files with 6870 additions and 2 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "repository-dispatch",
"version": "1.0.0",
"description": "Create a repository dispatch event",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/repository-dispatch.git"
},
"keywords": [],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/repository-dispatch/issues"
},
"homepage": "https://github.com/peter-evans/repository-dispatch#readme",
"dependencies": {
"@actions/core": "^1.1.1",
"@octokit/request": "^5.1.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5"
}
}