ad38cffc07
## [1.10.2](https://github.com/actions/create-github-app-token/compare/v1.10.1...v1.10.2) (2024-06-26)
### Bug Fixes
* do not revoke token if already expired ([#147](https://github.com/actions/create-github-app-token/issues/147)) ([66a7045](https://github.com/actions/create-github-app-token/commit/66a70456860bafc79e37635eea77b8b2a929f6c8)), closes [#140](https://github.com/actions/create-github-app-token/issues/140) [#95](https://github.com/actions/create-github-app-token/issues/95)
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "create-github-app-token",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "1.10.2",
|
|
"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=node20.0.0",
|
|
"test": "c8 --100 ava tests/index.js",
|
|
"coverage": "c8 report --reporter html",
|
|
"postcoverage": "open-cli coverage/index.html"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@octokit/auth-app": "^7.1.0",
|
|
"@octokit/request": "^9.0.1",
|
|
"p-retry": "^6.2.0",
|
|
"undici": "^6.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@sinonjs/fake-timers": "^11.2.2",
|
|
"ava": "^6.1.3",
|
|
"c8": "^9.1.0",
|
|
"dotenv": "^16.4.5",
|
|
"esbuild": "^0.21.4",
|
|
"execa": "^9.1.0",
|
|
"open-cli": "^8.0.0",
|
|
"yaml": "^2.4.2"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"+([0-9]).x",
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
"@semantic-release/npm",
|
|
"semantic-release-plugin-github-breaking-version-tag",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"package.json",
|
|
"dist/*"
|
|
],
|
|
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|