Add issues_needing_comment script (#24839)
This might require a few follow-up commits to get this to work! 😅
Release Notes:
- N/A
This commit is contained in:
parent
9094f53211
commit
e133d3b31e
5 changed files with 572 additions and 1 deletions
32
.github/workflows/issue_response.yml
vendored
Normal file
32
.github/workflows/issue_response.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Issue Response
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 12 * * 2"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
issue-response:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "pnpm"
|
||||
cache-dependency-path: "script/issues_needing_comments/pnpm-lock.yaml"
|
||||
|
||||
- run: pnpm install --dir script/issues_needing_comments
|
||||
|
||||
- name: Run Issue Response Script
|
||||
run: pnpm run --dir script/issues_needing_comments ts-node main.ts
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
SLACK_ISSUE_RESPONSE_WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_RESPONSE_WEBHOOK_URL }}
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -25,7 +25,7 @@
|
|||
/crates/zed/resources/flatpak/flatpak-cargo-sources.json
|
||||
/dev.zed.Zed*.json
|
||||
/plugins/bin
|
||||
/script/node_modules
|
||||
**/node_modules
|
||||
/zed.xcworkspace
|
||||
DerivedData/
|
||||
Packages
|
||||
|
|
61
script/issues_needing_comments/main.ts
Normal file
61
script/issues_needing_comments/main.ts
Normal file
|
@ -0,0 +1,61 @@
|
|||
import { Octokit } from "@octokit/rest";
|
||||
import { IncomingWebhook } from "@slack/webhook";
|
||||
|
||||
async function main() {
|
||||
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN });
|
||||
const webhook = new IncomingWebhook(
|
||||
process.env.SLACK_ISSUE_RESPONSE_WEBHOOK_URL!,
|
||||
);
|
||||
|
||||
const owner = "zed-industries";
|
||||
const repo = "zed";
|
||||
const staff = await octokit.paginate(octokit.rest.orgs.listMembers, {
|
||||
org: owner,
|
||||
per_page: 100,
|
||||
});
|
||||
let staffHandles = staff.map((member) => member.login);
|
||||
let commenterFilters = staffHandles.map((name) => `-commenter:${name}`);
|
||||
let authorFilters = staffHandles.map((name) => `-author:${name}`);
|
||||
|
||||
const q = [
|
||||
`repo:${owner}/${repo}`,
|
||||
"is:issue",
|
||||
"state:open",
|
||||
"created:>=2025-02-01",
|
||||
"sort:created-asc",
|
||||
...commenterFilters,
|
||||
...authorFilters,
|
||||
];
|
||||
|
||||
const response = await octokit.rest.search.issuesAndPullRequests({
|
||||
q: q.join("+"),
|
||||
per_page: 100,
|
||||
});
|
||||
|
||||
let issues = response.data.items;
|
||||
let issueLines = issues.map((issue, index) => {
|
||||
const formattedDate = new Date(issue.created_at).toLocaleDateString(
|
||||
"en-US",
|
||||
{
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric",
|
||||
},
|
||||
);
|
||||
return `${index + 1}. ${formattedDate}: <${issue.html_url}|${issue.title}>`;
|
||||
});
|
||||
|
||||
const blocks = [
|
||||
{
|
||||
type: "section",
|
||||
text: {
|
||||
type: "mrkdwn",
|
||||
text: issueLines.join("\n"),
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
await webhook.send({ blocks: blocks });
|
||||
}
|
||||
|
||||
main().catch((error) => console.error("An error occurred:", error));
|
12
script/issues_needing_comments/package.json
Normal file
12
script/issues_needing_comments/package.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"@octokit/rest": "^21.1.0",
|
||||
"@slack/webhook": "^7.0.4",
|
||||
"date-fns": "^4.1.0",
|
||||
"octokit": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/types": "^13.8.0",
|
||||
"@slack/types": "^2.14.0"
|
||||
}
|
||||
}
|
466
script/issues_needing_comments/pnpm-lock.yaml
generated
Normal file
466
script/issues_needing_comments/pnpm-lock.yaml
generated
Normal file
|
@ -0,0 +1,466 @@
|
|||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
'@octokit/rest':
|
||||
specifier: ^21.1.0
|
||||
version: 21.1.0
|
||||
'@slack/webhook':
|
||||
specifier: ^7.0.4
|
||||
version: 7.0.4
|
||||
date-fns:
|
||||
specifier: ^4.1.0
|
||||
version: 4.1.0
|
||||
octokit:
|
||||
specifier: ^4.1.0
|
||||
version: 4.1.0
|
||||
devDependencies:
|
||||
'@octokit/types':
|
||||
specifier: ^13.8.0
|
||||
version: 13.8.0
|
||||
'@slack/types':
|
||||
specifier: ^2.14.0
|
||||
version: 2.14.0
|
||||
|
||||
packages:
|
||||
|
||||
'@octokit/app@15.1.2':
|
||||
resolution: {integrity: sha512-6aKmKvqnJKoVK+kx0mLlBMKmQYoziPw4Rd/PWr0j65QVQlrDXlu6hGU8fmTXt7tNkf/DsubdIaTT4fkoWzCh5g==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-app@7.1.4':
|
||||
resolution: {integrity: sha512-5F+3l/maq9JfWQ4bV28jT2G/K8eu9OJ317yzXPTGe4Kw+lKDhFaS4dQ3Ltmb6xImKxfCQdqDqMXODhc9YLipLw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-oauth-app@8.1.2':
|
||||
resolution: {integrity: sha512-3woNZgq5/S6RS+9ZTq+JdymxVr7E0s4EYxF20ugQvgX3pomdPUL5r/XdTY9wALoBM2eHVy4ettr5fKpatyTyHw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-oauth-device@7.1.2':
|
||||
resolution: {integrity: sha512-gTOIzDeV36OhVfxCl69FmvJix7tJIiU6dlxuzLVAzle7fYfO8UDyddr9B+o4CFQVaMBLMGZ9ak2CWMYcGeZnPw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-oauth-user@5.1.2':
|
||||
resolution: {integrity: sha512-PgVDDPJgZYb3qSEXK4moksA23tfn68zwSAsQKZ1uH6IV9IaNEYx35OXXI80STQaLYnmEE86AgU0tC1YkM4WjsA==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-token@5.1.2':
|
||||
resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/auth-unauthenticated@6.1.1':
|
||||
resolution: {integrity: sha512-bGXqdN6RhSFHvpPq46SL8sN+F3odQ6oMNLWc875IgoqcC3qus+fOL2th6Tkl94wvdSTy8/OeHzWy/lZebmnhog==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/core@6.1.3':
|
||||
resolution: {integrity: sha512-z+j7DixNnfpdToYsOutStDgeRzJSMnbj8T1C/oQjB6Aa+kRfNjs/Fn7W6c8bmlt6mfy3FkgeKBRnDjxQow5dow==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/endpoint@10.1.2':
|
||||
resolution: {integrity: sha512-XybpFv9Ms4hX5OCHMZqyODYqGTZ3H6K6Vva+M9LR7ib/xr1y1ZnlChYv9H680y77Vd/i/k+thXApeRASBQkzhA==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/graphql@8.2.0':
|
||||
resolution: {integrity: sha512-gejfDywEml/45SqbWTWrhfwvLBrcGYhOn50sPOjIeVvH6i7D16/9xcFA8dAJNp2HMcd+g4vru41g4E2RBiZvfQ==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/oauth-app@7.1.5':
|
||||
resolution: {integrity: sha512-/Y2MiwWDlGUK4blKKfjJiwjzu/FzwKTTTfTZAAQ0QbdBIDEGJPWhOFH6muSN86zaa4tNheB4YS3oWIR2e4ydzA==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/oauth-authorization-url@7.1.1':
|
||||
resolution: {integrity: sha512-ooXV8GBSabSWyhLUowlMIVd9l1s2nsOGQdlP2SQ4LnkEsGXzeCvbSbCPdZThXhEFzleGPwbapT0Sb+YhXRyjCA==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/oauth-methods@5.1.3':
|
||||
resolution: {integrity: sha512-M+bDBi5H8FnH0xhCTg0m9hvcnppdDnxUqbZyOkxlLblKpLAR+eT2nbDPvJDp0eLrvJWA1I8OX0KHf/sBMQARRA==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/openapi-types@23.0.1':
|
||||
resolution: {integrity: sha512-izFjMJ1sir0jn0ldEKhZ7xegCTj/ObmEDlEfpFrx4k/JyZSMRHbO3/rBwgE7f3m2DHt+RrNGIVw4wSmwnm3t/g==}
|
||||
|
||||
'@octokit/openapi-webhooks-types@8.5.1':
|
||||
resolution: {integrity: sha512-i3h1b5zpGSB39ffBbYdSGuAd0NhBAwPyA3QV3LYi/lx4lsbZiu7u2UHgXVUR6EpvOI8REOuVh1DZTRfHoJDvuQ==}
|
||||
|
||||
'@octokit/plugin-paginate-graphql@5.2.4':
|
||||
resolution: {integrity: sha512-pLZES1jWaOynXKHOqdnwZ5ULeVR6tVVCMm+AUbp0htdcyXDU95WbkYdU4R2ej1wKj5Tu94Mee2Ne0PjPO9cCyA==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': '>=6'
|
||||
|
||||
'@octokit/plugin-paginate-rest@11.4.0':
|
||||
resolution: {integrity: sha512-ttpGck5AYWkwMkMazNCZMqxKqIq1fJBNxBfsFwwfyYKTf914jKkLF0POMS3YkPBwp5g1c2Y4L79gDz01GhSr1g==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': '>=6'
|
||||
|
||||
'@octokit/plugin-request-log@5.3.1':
|
||||
resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': '>=6'
|
||||
|
||||
'@octokit/plugin-rest-endpoint-methods@13.3.0':
|
||||
resolution: {integrity: sha512-LUm44shlmkp/6VC+qQgHl3W5vzUP99ZM54zH6BuqkJK4DqfFLhegANd+fM4YRLapTvPm4049iG7F3haANKMYvQ==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': '>=6'
|
||||
|
||||
'@octokit/plugin-retry@7.1.3':
|
||||
resolution: {integrity: sha512-8nKOXvYWnzv89gSyIvgFHmCBAxfQAOPRlkacUHL9r5oWtp5Whxl8Skb2n3ACZd+X6cYijD6uvmrQuPH/UCL5zQ==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': '>=6'
|
||||
|
||||
'@octokit/plugin-throttling@9.4.0':
|
||||
resolution: {integrity: sha512-IOlXxXhZA4Z3m0EEYtrrACkuHiArHLZ3CvqWwOez/pURNqRuwfoFlTPbN5Muf28pzFuztxPyiUiNwz8KctdZaQ==}
|
||||
engines: {node: '>= 18'}
|
||||
peerDependencies:
|
||||
'@octokit/core': ^6.1.3
|
||||
|
||||
'@octokit/request-error@6.1.6':
|
||||
resolution: {integrity: sha512-pqnVKYo/at0NuOjinrgcQYpEbv4snvP3bKMRqHaD9kIsk9u1LCpb2smHZi8/qJfgeNqLo5hNW4Z7FezNdEo0xg==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/request@9.2.0':
|
||||
resolution: {integrity: sha512-kXLfcxhC4ozCnAXy2ff+cSxpcF0A1UqxjvYMqNuPIeOAzJbVWQ+dy5G2fTylofB/gTbObT8O6JORab+5XtA1Kw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/rest@21.1.0':
|
||||
resolution: {integrity: sha512-93iLxcKDJboUpmnUyeJ6cRIi7z7cqTZT1K7kRK4LobGxwTwpsa+2tQQbRQNGy7IFDEAmrtkf4F4wBj3D5rVlJQ==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/types@13.8.0':
|
||||
resolution: {integrity: sha512-x7DjTIbEpEWXK99DMd01QfWy0hd5h4EN+Q7shkdKds3otGQP+oWE/y0A76i1OvH9fygo4ddvNf7ZvF0t78P98A==}
|
||||
|
||||
'@octokit/webhooks-methods@5.1.0':
|
||||
resolution: {integrity: sha512-yFZa3UH11VIxYnnoOYCVoJ3q4ChuSOk2IVBBQ0O3xtKX4x9bmKb/1t+Mxixv2iUhzMdOl1qeWJqEhouXXzB3rQ==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@octokit/webhooks@13.5.0':
|
||||
resolution: {integrity: sha512-uSO/TCCfi9vaZHOBsGWsRNBXYYKtLnSDbHI+std0M80AaEd7AnVfLqvk+9V3GP1faPcOx06ADx+h8UWwvemIGw==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
'@slack/types@2.14.0':
|
||||
resolution: {integrity: sha512-n0EGm7ENQRxlXbgKSrQZL69grzg1gHLAVd+GlRVQJ1NSORo0FrApR7wql/gaKdu2n4TO83Sq/AmeUOqD60aXUA==}
|
||||
engines: {node: '>= 12.13.0', npm: '>= 6.12.0'}
|
||||
|
||||
'@slack/webhook@7.0.4':
|
||||
resolution: {integrity: sha512-JDJte2dbJCcq1/GCMBYJH6fj+YS4n5GuPjT4tF3O1NPN6pFPCR9yA/apRh9sdfhdFG7hadiRgmiQqC4GLgNkZg==}
|
||||
engines: {node: '>= 18', npm: '>= 8.6.0'}
|
||||
|
||||
'@types/aws-lambda@8.10.147':
|
||||
resolution: {integrity: sha512-nD0Z9fNIZcxYX5Mai2CTmFD7wX7UldCkW2ezCF8D1T5hdiLsnTWDGRpfRYntU6VjTdLQjOvyszru7I1c1oCQew==}
|
||||
|
||||
'@types/node@22.13.1':
|
||||
resolution: {integrity: sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==}
|
||||
|
||||
asynckit@0.4.0:
|
||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||
|
||||
axios@1.7.9:
|
||||
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
|
||||
|
||||
before-after-hook@3.0.2:
|
||||
resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
|
||||
|
||||
bottleneck@2.19.5:
|
||||
resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
|
||||
|
||||
combined-stream@1.0.8:
|
||||
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
||||
engines: {node: '>= 0.8'}
|
||||
|
||||
date-fns@4.1.0:
|
||||
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
|
||||
|
||||
delayed-stream@1.0.0:
|
||||
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
||||
engines: {node: '>=0.4.0'}
|
||||
|
||||
fast-content-type-parse@2.0.1:
|
||||
resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==}
|
||||
|
||||
follow-redirects@1.15.9:
|
||||
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
|
||||
engines: {node: '>=4.0'}
|
||||
peerDependencies:
|
||||
debug: '*'
|
||||
peerDependenciesMeta:
|
||||
debug:
|
||||
optional: true
|
||||
|
||||
form-data@4.0.1:
|
||||
resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
|
||||
engines: {node: '>= 6'}
|
||||
|
||||
mime-db@1.52.0:
|
||||
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
mime-types@2.1.35:
|
||||
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
octokit@4.1.0:
|
||||
resolution: {integrity: sha512-/UrQAOSvkc+lUUWKNzy4ByAgYU9KpFzZQt8DnC962YmQuDiZb1SNJ90YukCCK5aMzKqqCA+z1kkAlmzYvdYKag==}
|
||||
engines: {node: '>= 18'}
|
||||
|
||||
proxy-from-env@1.1.0:
|
||||
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
||||
|
||||
toad-cache@3.7.0:
|
||||
resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
undici-types@6.20.0:
|
||||
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
|
||||
|
||||
universal-github-app-jwt@2.2.0:
|
||||
resolution: {integrity: sha512-G5o6f95b5BggDGuUfKDApKaCgNYy2x7OdHY0zSMF081O0EJobw+1130VONhrA7ezGSV2FNOGyM+KQpQZAr9bIQ==}
|
||||
|
||||
universal-user-agent@7.0.2:
|
||||
resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
|
||||
|
||||
snapshots:
|
||||
|
||||
'@octokit/app@15.1.2':
|
||||
dependencies:
|
||||
'@octokit/auth-app': 7.1.4
|
||||
'@octokit/auth-unauthenticated': 6.1.1
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/oauth-app': 7.1.5
|
||||
'@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3)
|
||||
'@octokit/types': 13.8.0
|
||||
'@octokit/webhooks': 13.5.0
|
||||
|
||||
'@octokit/auth-app@7.1.4':
|
||||
dependencies:
|
||||
'@octokit/auth-oauth-app': 8.1.2
|
||||
'@octokit/auth-oauth-user': 5.1.2
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
toad-cache: 3.7.0
|
||||
universal-github-app-jwt: 2.2.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/auth-oauth-app@8.1.2':
|
||||
dependencies:
|
||||
'@octokit/auth-oauth-device': 7.1.2
|
||||
'@octokit/auth-oauth-user': 5.1.2
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/types': 13.8.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/auth-oauth-device@7.1.2':
|
||||
dependencies:
|
||||
'@octokit/oauth-methods': 5.1.3
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/types': 13.8.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/auth-oauth-user@5.1.2':
|
||||
dependencies:
|
||||
'@octokit/auth-oauth-device': 7.1.2
|
||||
'@octokit/oauth-methods': 5.1.3
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/types': 13.8.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/auth-token@5.1.2': {}
|
||||
|
||||
'@octokit/auth-unauthenticated@6.1.1':
|
||||
dependencies:
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
'@octokit/core@6.1.3':
|
||||
dependencies:
|
||||
'@octokit/auth-token': 5.1.2
|
||||
'@octokit/graphql': 8.2.0
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
before-after-hook: 3.0.2
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/endpoint@10.1.2':
|
||||
dependencies:
|
||||
'@octokit/types': 13.8.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/graphql@8.2.0':
|
||||
dependencies:
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/types': 13.8.0
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/oauth-app@7.1.5':
|
||||
dependencies:
|
||||
'@octokit/auth-oauth-app': 8.1.2
|
||||
'@octokit/auth-oauth-user': 5.1.2
|
||||
'@octokit/auth-unauthenticated': 6.1.1
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/oauth-authorization-url': 7.1.1
|
||||
'@octokit/oauth-methods': 5.1.3
|
||||
'@types/aws-lambda': 8.10.147
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/oauth-authorization-url@7.1.1': {}
|
||||
|
||||
'@octokit/oauth-methods@5.1.3':
|
||||
dependencies:
|
||||
'@octokit/oauth-authorization-url': 7.1.1
|
||||
'@octokit/request': 9.2.0
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
'@octokit/openapi-types@23.0.1': {}
|
||||
|
||||
'@octokit/openapi-webhooks-types@8.5.1': {}
|
||||
|
||||
'@octokit/plugin-paginate-graphql@5.2.4(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
|
||||
'@octokit/plugin-paginate-rest@11.4.0(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
'@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
|
||||
'@octokit/plugin-rest-endpoint-methods@13.3.0(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
'@octokit/plugin-retry@7.1.3(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
bottleneck: 2.19.5
|
||||
|
||||
'@octokit/plugin-throttling@9.4.0(@octokit/core@6.1.3)':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/types': 13.8.0
|
||||
bottleneck: 2.19.5
|
||||
|
||||
'@octokit/request-error@6.1.6':
|
||||
dependencies:
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
'@octokit/request@9.2.0':
|
||||
dependencies:
|
||||
'@octokit/endpoint': 10.1.2
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
fast-content-type-parse: 2.0.1
|
||||
universal-user-agent: 7.0.2
|
||||
|
||||
'@octokit/rest@21.1.0':
|
||||
dependencies:
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-rest-endpoint-methods': 13.3.0(@octokit/core@6.1.3)
|
||||
|
||||
'@octokit/types@13.8.0':
|
||||
dependencies:
|
||||
'@octokit/openapi-types': 23.0.1
|
||||
|
||||
'@octokit/webhooks-methods@5.1.0': {}
|
||||
|
||||
'@octokit/webhooks@13.5.0':
|
||||
dependencies:
|
||||
'@octokit/openapi-webhooks-types': 8.5.1
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/webhooks-methods': 5.1.0
|
||||
|
||||
'@slack/types@2.14.0': {}
|
||||
|
||||
'@slack/webhook@7.0.4':
|
||||
dependencies:
|
||||
'@slack/types': 2.14.0
|
||||
'@types/node': 22.13.1
|
||||
axios: 1.7.9
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
'@types/aws-lambda@8.10.147': {}
|
||||
|
||||
'@types/node@22.13.1':
|
||||
dependencies:
|
||||
undici-types: 6.20.0
|
||||
|
||||
asynckit@0.4.0: {}
|
||||
|
||||
axios@1.7.9:
|
||||
dependencies:
|
||||
follow-redirects: 1.15.9
|
||||
form-data: 4.0.1
|
||||
proxy-from-env: 1.1.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
before-after-hook@3.0.2: {}
|
||||
|
||||
bottleneck@2.19.5: {}
|
||||
|
||||
combined-stream@1.0.8:
|
||||
dependencies:
|
||||
delayed-stream: 1.0.0
|
||||
|
||||
date-fns@4.1.0: {}
|
||||
|
||||
delayed-stream@1.0.0: {}
|
||||
|
||||
fast-content-type-parse@2.0.1: {}
|
||||
|
||||
follow-redirects@1.15.9: {}
|
||||
|
||||
form-data@4.0.1:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
mime-types: 2.1.35
|
||||
|
||||
mime-db@1.52.0: {}
|
||||
|
||||
mime-types@2.1.35:
|
||||
dependencies:
|
||||
mime-db: 1.52.0
|
||||
|
||||
octokit@4.1.0:
|
||||
dependencies:
|
||||
'@octokit/app': 15.1.2
|
||||
'@octokit/core': 6.1.3
|
||||
'@octokit/oauth-app': 7.1.5
|
||||
'@octokit/plugin-paginate-graphql': 5.2.4(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-rest-endpoint-methods': 13.3.0(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-retry': 7.1.3(@octokit/core@6.1.3)
|
||||
'@octokit/plugin-throttling': 9.4.0(@octokit/core@6.1.3)
|
||||
'@octokit/request-error': 6.1.6
|
||||
'@octokit/types': 13.8.0
|
||||
|
||||
proxy-from-env@1.1.0: {}
|
||||
|
||||
toad-cache@3.7.0: {}
|
||||
|
||||
undici-types@6.20.0: {}
|
||||
|
||||
universal-github-app-jwt@2.2.0: {}
|
||||
|
||||
universal-user-agent@7.0.2: {}
|
Loading…
Add table
Add a link
Reference in a new issue