René's URL Explorer Experiment


Title: feat!: add getOctokit to script context, upgrade @actions/github v9, @octokit/core v7, and related packages by salmanmkc · Pull Request #700 · actions/github-script · GitHub

Open Graph Title: feat!: add getOctokit to script context, upgrade @actions/github v9, @octokit/core v7, and related packages by salmanmkc · Pull Request #700 · actions/github-script

X Title: feat!: add getOctokit to script context, upgrade @actions/github v9, @octokit/core v7, and related packages by salmanmkc · Pull Request #700 · actions/github-script

Description: What this does Upgrades @actions/github to v9 (and related Octokit packages) and adds getOctokit to the script context. Today, if you need a second Octokit client with a different token (GitHub App, PAT, cross-org), you do something like: const { getOctokit } = require('@actions/github') const appClient = getOctokit(process.env.APP_TOKEN) That breaks in v9 because @actions/github is now ESM-only — require() no longer works. This PR replaces that pattern with a built-in getOctokit that's available directly in the script context, no imports needed: - uses: actions/github-script@v9 env: APP_TOKEN: ${{ secrets.MY_APP_TOKEN }} with: script: | // primary client uses GITHUB_TOKEN as usual await github.rest.issues.addLabels({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, labels: ['needs-review'] }) // secondary client uses a different token const appOctokit = getOctokit(process.env.APP_TOKEN) await appOctokit.rest.repos.createDispatchEvent({ owner: 'my-org', repo: 'deploy', event_type: 'go' }) Works for GHES too: const ghes = getOctokit(process.env.GHES_TOKEN, { baseUrl: 'https://github.example.com/api/v3' }) The secondary client inherits retry settings, user-agent, proxy config, and plugins from the action — so it behaves consistently with the primary github client. request and retry options are deep-merged (so you can tweak one field without losing the rest), while other options like baseUrl or userAgent replace the default outright if you set them. Dependency upgrades Package Old New @actions/github ^6.0.0 ^9.0.0 @octokit/core ^5.0.1 ^7.0.0 @octokit/plugin-request-log ^4.0.0 ^6.0.0 @octokit/plugin-retry ^6.0.1 ^8.0.0 Package version 7.0.1 9.0.0 Also updated tsconfig.json to ES2022 with bundler module resolution, and added Jest tsconfig overrides for CJS test compatibility. Why v9 @actions/github v6 → v9 brings updated Octokit types and the orchestration ID user-agent feature (toolkit#2364). The main breaking change is that require('@actions/github') stops working inside scripts — workflows like MetaMask's that use this pattern will need to switch to the injected getOctokit instead. Other breaking changes: const getOctokit = ... or let getOctokit = ... in scripts will SyntaxError (same as const github = ... today — function parameters can't be redeclared with const/let). Use it directly or use var if you really need to redeclare. Internal @actions/github imports (like @actions/github/lib/utils) may have changed paths. What's in the diff New: src/create-configured-getoctokit.ts — factory wrapper (deep merge, undefined stripping, plugin dedup) Tests: 16 factory unit tests, 4 integration tests, CI workflow job with real API calls Changed: src/main.ts — wires factory into script context src/async-function.ts — v9 type imports, getOctokit in argument types src/retry-options.ts — updated import path for v9 tsconfig.json — ES2022 + bundler resolution package.json — version 9.0.0, dependency bumps .github/workflows/integration.yml — new getOctokit test job, user-agent test fix README.md — v9 docs, getOctokit section with examples, breaking changes .licenses/ — refreshed for all upgraded packages Testing 35 tests across 4 suites, all green 15/15 CI checks passing Live demo — real multi-token workflow reading a private repo via SECOND_PAT, GraphQL queries, cross-identity verification Note: This PR also includes release prep (version bump to 9.0.0, README examples updated to @v9, V9 breaking changes section, license cache refresh). This can be split into a separate PR if preferred. Part of github/c2c-actions#10001 Also closes: #707

Open Graph Description: What this does Upgrades @actions/github to v9 (and related Octokit packages) and adds getOctokit to the script context. Today, if you need a second Octokit client with a different token (GitHub App...

X Description: What this does Upgrades @actions/github to v9 (and related Octokit packages) and adds getOctokit to the script context. Today, if you need a second Octokit client with a different token (GitHub App...

Opengraph URL: https://github.com/actions/github-script/pull/700

X: @github

direct link

Domain: redirect.github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:2d7d3523-a6ef-4f71-6169-041191585cb7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idCD32:2E9C16:18F459:220D8C:6A4C1CF5
html-safe-nonced45643d3d9144386f7c5b0b5b9ce432f5a263a51b6cb67b0e18a7f484c4e024f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRDMyOjJFOUMxNjoxOEY0NTk6MjIwRDhDOjZBNEMxQ0Y1IiwidmlzaXRvcl9pZCI6Ijc1NTA3NTY4NjI2OTUzMTY3MjUiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac262c354d641171f7dd779d226be1f97ae33f663c29e09da644824c09959bbf33
hovercard-subject-tagpull_request:3339595038
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,actions,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/actions/github-script/pull/700/files
twitter:imagehttps://avatars.githubusercontent.com/u/32169182?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/32169182?s=400&v=4
og:image:altWhat this does Upgrades @actions/github to v9 (and related Octokit packages) and adds getOctokit to the script context. Today, if you need a second Octokit client with a different token (GitHub App...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None1b6b16d04026f131a36d57e3b01d0f4d26a51800edf48bf5ed0256e0ac905511
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/actions/github-script git https://github.com/actions/github-script.git
octolytics-dimension-user_id44036562
octolytics-dimension-user_loginactions
octolytics-dimension-repository_id205262760
octolytics-dimension-repository_nwoactions/github-script
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id205262760
octolytics-dimension-repository_network_root_nwoactions/github-script
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef95fb36c72adc940ff991c03531114b2245658d0
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://redirect.github.com/actions/github-script/pull/700/files#start-of-content
https://redirect.github.com/
Sign in https://redirect.github.com/login?return_to=https%3A%2F%2Fgithub.com%2Factions%2Fgithub-script%2Fpull%2F700%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://redirect.github.com/login?return_to=https%3A%2F%2Fgithub.com%2Factions%2Fgithub-script%2Fpull%2F700%2Ffiles
Sign up https://redirect.github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=actions%2Fgithub-script
Reloadhttps://redirect.github.com/actions/github-script/pull/700/files
Reloadhttps://redirect.github.com/actions/github-script/pull/700/files
Reloadhttps://redirect.github.com/actions/github-script/pull/700/files
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
actions https://redirect.github.com/actions
github-scripthttps://redirect.github.com/actions/github-script
Notifications https://redirect.github.com/login?return_to=%2Factions%2Fgithub-script
Fork 572 https://redirect.github.com/login?return_to=%2Factions%2Fgithub-script
Star 5k https://redirect.github.com/login?return_to=%2Factions%2Fgithub-script
Code https://redirect.github.com/actions/github-script
Issues 54 https://redirect.github.com/actions/github-script/issues
Pull requests 35 https://redirect.github.com/actions/github-script/pulls
Discussions https://redirect.github.com/actions/github-script/discussions
Actions https://redirect.github.com/actions/github-script/actions
Security and quality 0 https://redirect.github.com/actions/github-script/security
Insights https://redirect.github.com/actions/github-script/pulse
Code https://redirect.github.com/actions/github-script
Issues https://redirect.github.com/actions/github-script/issues
Pull requests https://redirect.github.com/actions/github-script/pulls
Discussions https://redirect.github.com/actions/github-script/discussions
Actions https://redirect.github.com/actions/github-script/actions
Security and quality https://redirect.github.com/actions/github-script/security
Insights https://redirect.github.com/actions/github-script/pulse
Sign up for GitHub https://redirect.github.com/signup?return_to=%2Factions%2Fgithub-script%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://redirect.github.com/login?return_to=%2Factions%2Fgithub-script%2Fissues%2Fnew%2Fchoose
salmanmkchttps://redirect.github.com/salmanmkc
mainhttps://redirect.github.com/actions/github-script/tree/main
salmanmkc/expose-getoctokithttps://redirect.github.com/actions/github-script/tree/salmanmkc/expose-getoctokit
Conversation 8 https://redirect.github.com/actions/github-script/pull/700
Commits 17 https://redirect.github.com/actions/github-script/pull/700/commits
Checks 15 https://redirect.github.com/actions/github-script/pull/700/checks
Files changed 35 https://redirect.github.com/actions/github-script/pull/700/files
feat!: add getOctokit to script context, upgrade @actions/github v9, @octokit/core v7, and related packages https://redirect.github.com/actions/github-script/pull/700/files#top
Show all changes 17 commits https://redirect.github.com/actions/github-script/pull/700/files
ff4b64f feat!: bump version to 9.0.0, upgrade @actions/github to v9 salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/ff4b64fc288a21d5291396a384c1273f032e6333
34cab63 chore: update package-lock.json for v9 dependencies salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/34cab63564f95d6485af634b33c3a33bbcc3c680
84e9b9d build: switch to ES2022 target with bundler module resolution salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/84e9b9d216ad37906c71057def44354950cff0c8
26bb776 chore: refresh license cache for upgraded dependencies salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/26bb776791e9ca80ed829c36f36d3d1a0b853090
926497b refactor: update OctokitOptions import path for v9 salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/926497b4069db93ed660c470b577b381fc5546c0
af48da8 refactor: update async-function types for v9 imports, add getOctokit … salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/af48da85cb387e5ef1b90cc05589aa135b695361
652783f types: update type declarations to match v9 async-function changes salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/652783f052c5de27f8eb27e7c52e53311656be11
0c2c53e feat: add getOctokit factory with deep merge, stripUndefined, and plu… salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/0c2c53e809cd74933932ca3f1b0635afde898fd3
19ac6e4 feat: wire getOctokit factory into script context salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/19ac6e42c04983618b1d3252f7991faafed4ed3f
73b5e99 test: add 16 unit tests for getOctokit factory salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/73b5e99fba923cb15f7718af6ed513c93e28151b
3d149a5 test: add getOctokit context tests to async-function suite salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/3d149a5dc375fe3b1eee17dd1e938431e0eed763
a047196 test: add getOctokit integration tests via callAsyncFunction salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/a047196d9a02fe92098771cafbb98c2f1814e408
c17d55b ci: add getOctokit integration test job salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/c17d55b90dcdb3d554d0027a6c180a7adc2daf78
3953caf docs: update README examples from @v8 to @v9, add getOctokit docs and… salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/3953caf8858d318f37b6cc53a9f5708859b5a7b7
c108472 chore: rebuild dist for v9 upgrade and getOctokit factory salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/c1084728b5b935ec4ddc1e4cee877b01797b3ff9
86e48e2 merge: incorporate main branch changes salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/86e48e20ac85c970ed1f96e718fd068173948b7b
ca10bbd fix: use @octokit/core/types import for v7 compatibility salmanmkc Apr 9, 2026 https://redirect.github.com/actions/github-script/pull/700/commits/ca10bbdd1a7739de09e99a200c7a59f5d73a4079
Clear filters https://redirect.github.com/actions/github-script/pull/700/files
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
integration.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
github.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-82ce6ddb72657f162d8f721a2c3985a03f487cc26afc67518a0eaede36eeb94c
http-client-2.2.0.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-5bc73f83b4dbe3f820cb15d3a90d21a52d3344038a4eb1c9b7fd28242a7ebc28
http-client-3.0.2.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-f59fbdb98fcc72fab10c51e10c1fdaefb650a4a321f366e6b1891679196d2b6e
auth-token.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-c63182f1ae74da4a9b440c6ab2da3f9f2e6d8ef73d6316be0f0a858e4e3d7247
core.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-d4448316ff7dfc21375ac769e6650e1c7a8e66d452e911dffa63b9062f977471
endpoint.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-91d6dbee168075a1f691e924a82fc5a1c63264b501dbeb2242b87532dcf1ffbb
graphql.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-2b1754420a77650f2ec8a8b852e9de67120dff394400b4f8c5cce4cd8246d21a
openapi-types.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-78e5289d9f808498d95fce5ed74de25107150ba56cb3c9ce95fab3e4865ec72a
plugin-paginate-rest.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-8904af3c88e6c881ead77907af802f3ad9306b3a3c6f7bcb58212cbe9aa7cea8
plugin-request-log.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-e6141b172ea7b880286e802d5e3a84622d78fc73d010bc52e66a771f6ad5dff7
plugin-rest-endpoint-methods.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-6cdd99526b7f52ab5e51d4125101851a79eb8761707444538cd4ad4840911f60
plugin-retry.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-830d3b7e2dee6686cc5be40f5c85aaf13d4188b62123e835c7d962b146e3d530
request-error.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-f2d155f597ff28e018bf8fe2345e2c30c13db201b443c4dad7365d8e588ff8da
request.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-881d4ce0178a208c9d62d9f81a30d0d98cf664da35a50c42409dc5f48f33c607
types.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-e7e7819296f4481f8da1fc370f885b38621624ba5e62c505fb14488386b9d442
before-after-hook.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-e2635d6f863fc6e903eda405ef966715fc5637364d1e7b0d51a4e16a133e5c42
fast-content-type-parse.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-1b529868eefc4ae2e25e4f78e91ba1c0641eccc26dc3026b8116b767b841fce1
json-with-bigint.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-cc68621cf615d5e15481caf4efc0f444affd441ea85cf0305a8327fd67dfefe8
undici-5.28.5.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-adb9569158d706d594383e4ed9cc39b6d31536e4389ef352ed2910aa5df58903
undici-6.24.1.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-a86517b821df573f22b5cc54f3e089a3750477c803c32657b71386bac9dbf9a1
universal-user-agent.dep.yml https://redirect.github.com/actions/github-script/pull/700/files#diff-17559033ae5a7363cf4f7b3be4ea4ca2fe47a8cee146e3383d2cf1b38f77bff2
README.md https://redirect.github.com/actions/github-script/pull/700/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
async-function.test.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-4dab588c3b8b3734c5201d25d4fc0cd1f69cb13f637dcfe752a6f5488d446478
create-configured-getoctokit.test.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-db43f4614c51e2614da209996378a0559e35c5de5d2c7dbc6a1ebc4183d83741
getoctokit-integration.test.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-e362a33294a2ae99b36f3209ae347ed8b58d8097b9f38af4159591c56c2c9e21
index.js https://redirect.github.com/actions/github-script/pull/700/files#diff-3d2b59189eeedc2d428ddd632e97658fe310f587f7cb63b01f9b98ffc11c0197
package-lock.json https://redirect.github.com/actions/github-script/pull/700/files#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519
package.json https://redirect.github.com/actions/github-script/pull/700/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
async-function.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-dbb29757fc1d2f7daeae34c0c584b90ad4645833e4617e7082762abb2c7724c4
create-configured-getoctokit.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-9ca14d44cb0af9b4862339ef4adbaf3f29f4197b832f725e5ec2253cf448ab5a
main.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-4fab5baaca5c14d2de62d8d2fceef376ddddcc8e9509d86cfa5643f51b89ce3d
retry-options.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-f748505b400a47fcd7b3ad6fce0ae00abb1bed9a61944faddf1ef53ff9d0b042
tsconfig.json https://redirect.github.com/actions/github-script/pull/700/files#diff-b55cdbef4907b7045f32cc5360d48d262cca5f94062e353089f189f4460039e0
async-function.d.ts https://redirect.github.com/actions/github-script/pull/700/files#diff-4bec391c0425c5342258d89eb5eaf4414c0b0d9b2f4a6e39fec90c90b781730d
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.github/workflows/integration.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.github/workflows/integration.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/actions/github-script/pull/700/{{ revealButtonHref }}
https://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
https://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
https://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
https://redirect.github.com/actions/github-script/pull/700/files#diff-82454b2fc887e9985b9348b8f3bca03d2f839645a4c3ba1f3f850014d7da5c8b
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@actions/github.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-82ce6ddb72657f162d8f721a2c3985a03f487cc26afc67518a0eaede36eeb94c
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40actions/github.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@actions/http-client-2.2.0.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-5bc73f83b4dbe3f820cb15d3a90d21a52d3344038a4eb1c9b7fd28242a7ebc28
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40actions/http-client-2.2.0.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@actions/http-client-3.0.2.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-f59fbdb98fcc72fab10c51e10c1fdaefb650a4a321f366e6b1891679196d2b6e
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40actions/http-client-3.0.2.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/auth-token.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-c63182f1ae74da4a9b440c6ab2da3f9f2e6d8ef73d6316be0f0a858e4e3d7247
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/auth-token.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/core.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-d4448316ff7dfc21375ac769e6650e1c7a8e66d452e911dffa63b9062f977471
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/core.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/endpoint.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-91d6dbee168075a1f691e924a82fc5a1c63264b501dbeb2242b87532dcf1ffbb
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/endpoint.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/graphql.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-2b1754420a77650f2ec8a8b852e9de67120dff394400b4f8c5cce4cd8246d21a
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/graphql.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/openapi-types.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-78e5289d9f808498d95fce5ed74de25107150ba56cb3c9ce95fab3e4865ec72a
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/openapi-types.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/plugin-paginate-rest.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-8904af3c88e6c881ead77907af802f3ad9306b3a3c6f7bcb58212cbe9aa7cea8
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/plugin-paginate-rest.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/plugin-request-log.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-e6141b172ea7b880286e802d5e3a84622d78fc73d010bc52e66a771f6ad5dff7
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/plugin-request-log.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-6cdd99526b7f52ab5e51d4125101851a79eb8761707444538cd4ad4840911f60
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/plugin-rest-endpoint-methods.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/plugin-retry.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-830d3b7e2dee6686cc5be40f5c85aaf13d4188b62123e835c7d962b146e3d530
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/plugin-retry.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/request-error.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-f2d155f597ff28e018bf8fe2345e2c30c13db201b443c4dad7365d8e588ff8da
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/request-error.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/request.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-881d4ce0178a208c9d62d9f81a30d0d98cf664da35a50c42409dc5f48f33c607
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/request.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/@octokit/types.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-e7e7819296f4481f8da1fc370f885b38621624ba5e62c505fb14488386b9d442
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/%40octokit/types.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/before-after-hook.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-e2635d6f863fc6e903eda405ef966715fc5637364d1e7b0d51a4e16a133e5c42
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/before-after-hook.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/fast-content-type-parse.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-1b529868eefc4ae2e25e4f78e91ba1c0641eccc26dc3026b8116b767b841fce1
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/fast-content-type-parse.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/json-with-bigint.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-cc68621cf615d5e15481caf4efc0f444affd441ea85cf0305a8327fd67dfefe8
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/json-with-bigint.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://redirect.github.com/actions/github-script/blob/main/CODEOWNERS#L1
.licenses/npm/undici-5.28.5.dep.ymlhttps://redirect.github.com/actions/github-script/pull/700/files#diff-adb9569158d706d594383e4ed9cc39b6d31536e4389ef352ed2910aa5df58903
View file https://redirect.github.com/actions/github-script/blob/ca10bbdd1a7739de09e99a200c7a59f5d73a4079/.licenses/npm/undici-5.28.5.dep.yml
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
Please reload this pagehttps://redirect.github.com/actions/github-script/pull/700/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.