feat: initial version (#1)
Some checks failed
/ demo (push) Has been cancelled

Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>
Co-authored-by: Gregor Martynus <gr2m@users.noreply.github.com>
This commit is contained in:
Gregor Martynus
2023-06-08 17:04:10 -07:00
committed by GitHub
parent abcb015889
commit f45685208f
14 changed files with 24977 additions and 3 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "app-token-action",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "GitHub Action for creating a GitHub App Installation Access Token",
"scripts": {
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node16.16",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/auth-app": "^4.0.13",
"@octokit/request": "^6.2.5"
},
"devDependencies": {
"dotenv": "^16.0.3",
"esbuild": "^0.17.19"
},
"release": {
"branches": [
"+([0-9]).x",
"main"
]
}
}