Skip to content

Implement support for the NetSuite OAuth connect flow - #96677

Open
akinwale wants to merge 13 commits into
Expensify:mainfrom
akinwale:task-96569
Open

Implement support for the NetSuite OAuth connect flow#96677
akinwale wants to merge 13 commits into
Expensify:mainfrom
akinwale:task-96569

Conversation

@akinwale

@akinwale akinwale commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

Explanation of Change

Implement support for connecting to NetSuite accounting using OAuth, gated behind the netSuiteOAuth beta.

Fixed Issues

$ #96569
PROPOSAL: #96569 (comment)

Tests

Prerequisite

  • netSuiteOAuth beta enabled for the test account

Test Steps

  1. Launch Expensify.
  2. Create a new workspace or open an existing workspace.
  3. Enable the Accounting feature if not enabled.
  4. Navigate to workspace settings > Accounting.
  5. Click on the Connect button beside NetSuite.
  6. Follow the wizard until you are required to enter an account ID.
  7. Enter the account ID of the NetSuite account to connect.
  8. Click on Confirm
  9. Sign in to the NetSuite account and follow the instructions to connect.
  10. Verify that after a successful connection, the user is redirected back to the accounting page.
  11. Verify that the NetSuite accounting connection is successfully established, shown on the accounting page.
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

Same as tests.

Test Steps

  1. Launch Expensify.
  2. Create a new workspace or open an existing workspace.
  3. Enable the Accounting feature if not enabled.
  4. Navigate to workspace settings > Accounting.
  5. Click on the Connect button beside NetSuite.
  6. Follow the wizard until you are required to enter an account ID.
  7. Enter the account ID of the NetSuite account to connect.
  8. Click on Confirm
  9. Sign in to the NetSuite account and follow the instructions to connect.
  10. Verify that after a successful connection, the user is redirected back to the accounting page.
  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If new assets were added or existing ones were modified, I verified that:
    • The assets are optimized and compressed (for SVG files, run npm run compress-svg)
    • The assets load correctly across all supported platforms.
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
96569-ios-hybrid.mp4
iOS: mWeb Safari
96569-ios-safari.mp4
MacOS: Chrome / Safari
96569-web.mp4

@melvin-bot

melvin-bot Bot commented Jul 21, 2026

Copy link
Copy Markdown

Hey, I noticed you changed src/languages/en.ts in a PR from a fork. For security reasons, translations are not generated automatically for PRs from forks.

If you want to automatically generate translations for other locales, an Expensify employee will have to:

  1. Look at the code and make sure there are no malicious changes.
  2. Run the Generate static translations GitHub workflow. If you have write access and the K2 extension, you can simply click: [this button]

Alternatively, if you are an external contributor, you can run the translation script locally with your own OpenAI API key. To learn more, try running:

npx ts-node ./scripts/generateTranslations.ts --help

Typically, you'd want to translate only what you changed by running npx ts-node ./scripts/generateTranslations.ts --compare-ref main

@akinwale akinwale changed the title [HOLD] Implement support for the NetSuite OAuth flow [HOLD] Implement support for the NetSuite OAuth connect flow Jul 21, 2026
@codecov

codecov Bot commented Jul 21, 2026

Copy link
Copy Markdown

Codecov Report

✅ Changes either increased or maintained existing code coverage, great job!

Files with missing lines Coverage Δ
src/CONST/index.ts 94.81% <ø> (ø)
src/ROUTES.ts 22.53% <100.00%> (+0.06%) ⬆️
src/SCREENS.ts 100.00% <ø> (ø)
src/libs/API/types.ts 100.00% <ø> (ø)
src/libs/Navigation/linkingConfig/config.ts 66.66% <ø> (ø)
src/libs/actions/connections/NetSuiteCommands.ts 14.93% <100.00%> (+1.43%) ⬆️
...orkspace/accounting/AccountingSetupWebViewPage.tsx 93.33% <100.00%> (+0.22%) ⬆️
...unting/netsuite/NetSuiteSetupPage/index.native.tsx 100.00% <100.00%> (ø)
...uiteTokenInput/subPages/NetSuiteTokenInputForm.tsx 85.36% <100.00%> (+85.36%) ⬆️
...put/subPages/connectToNetSuiteOAuthSetup.native.ts 100.00% <100.00%> (ø)
... and 4 more
... and 11 files with indirect coverage changes

@yuwenmemon
yuwenmemon self-requested a review July 23, 2026 23:43
@akinwale akinwale changed the title [HOLD] Implement support for the NetSuite OAuth connect flow [HOLD Web-E 54924] Implement support for the NetSuite OAuth connect flow Jul 29, 2026
@akinwale
akinwale marked this pull request as ready for review July 29, 2026 23:09
@akinwale
akinwale requested review from a team as code owners July 29, 2026 23:09
@melvin-bot
melvin-bot Bot requested review from flaviadefaria and gijoe0295 and removed request for a team July 29, 2026 23:09
@melvin-bot

melvin-bot Bot commented Jul 29, 2026

Copy link
Copy Markdown

@gijoe0295 Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot
melvin-bot Bot removed the request for review from a team July 29, 2026 23:09

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 8eb52a1ef6

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

@akinwale akinwale changed the title [HOLD Web-E 54924] Implement support for the NetSuite OAuth connect flow Implement support for the NetSuite OAuth connect flow Jul 30, 2026
@akinwale

Copy link
Copy Markdown
Contributor Author

@gijoe0295 The Web-E PR was deployed to staging, so this is ready for review (you can test with the staging server).

@yuwenmemon
yuwenmemon requested review from ShridharGoel and removed request for gijoe0295 July 31, 2026 20:23
@yuwenmemon

Copy link
Copy Markdown
Contributor

Assigning to @ShridharGoel for review since they're attached to the project

@ShridharGoel

Copy link
Copy Markdown
Contributor

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 74bdce555a

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread src/languages/de.ts
Comment on lines +5432 to +5433
title: '[de] Enable OAuth 2.0',
description: '[de] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3 Badge Replace visible locale placeholders

When the NetSuite OAuth beta is enabled and the user's preferred locale is German (and likewise for the other non-English locale files changed in this diff), these strings are rendered verbatim by translate(...) in the setup wizard, so users see visible placeholders like [de] Enable OAuth 2.0 and English instructions instead of localized or clean fallback copy. Please replace the [xx] placeholders with real translations, or at least remove the prefixes so we don't ship placeholder text to localized users.

Useful? React with 👍 / 👎.

@ShridharGoel

Copy link
Copy Markdown
Contributor

@yuwenmemon Can you run the translations workflow when you get the chance?

@OSBotify

OSBotify commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

🦜 Polyglot Parrot! 🦜

Squawk! Looks like you added some shiny new English strings. Allow me to parrot them back to you in other tongues:

View the translation diff
diff --git a/src/languages/de.ts b/src/languages/de.ts
index ae2faf734b9..f3d03826870 100644
--- a/src/languages/de.ts
+++ b/src/languages/de.ts
@@ -5449,12 +5449,13 @@ ${amount} für ${merchant} – ${date}`,
                         netSuiteAccountIDDescription: 'Wechsel in NetSuite zu *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[de] Enable OAuth 2.0',
-                        description: '[de] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'OAuth 2.0 aktivieren',
+                        description: 'Gehen Sie in NetSuite zu *Setup > Company > Enable Features > SuiteCloud* und aktivieren Sie unter *Manage Authentication* die Option *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[de] Enable REST web services',
-                        description: '[de] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'REST-Webdienste aktivieren',
+                        description:
+                            'Gehen Sie in NetSuite zu *Setup > Company > Enable Features > SuiteCloud* und aktivieren Sie unter *SuiteTalk (Web Services)* die Option *REST Web Services*.',
                     },
                 },
             },
diff --git a/src/languages/es.ts b/src/languages/es.ts
index 8d845aec688..3f226806e8c 100644
--- a/src/languages/es.ts
+++ b/src/languages/es.ts
@@ -5323,12 +5323,12 @@ ${amount} para ${merchant} - ${date}`,
                         description: 'En NetSuite, ir a *Configuración > Empresa > Habilitar funciones > SuiteCloud* > habilitar *Servicios Web SOAP*.',
                     },
                     enableOAuth: {
-                        title: '[es] Enable OAuth 2.0',
-                        description: '[es] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'Habilitar OAuth 2.0',
+                        description: 'En NetSuite, ve a *Setup > Company > Enable Features > SuiteCloud* y, en *Manage Authentication*, habilita *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[es] Enable REST web services',
-                        description: '[es] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'Habilitar servicios web REST',
+                        description: 'En NetSuite, ve a *Setup > Company > Enable Features > SuiteCloud* y, en *SuiteTalk (Web Services)*, habilita *REST Web Services*.',
                     },
                     createAccessToken: {
                         title: 'Crear un token de acceso',
diff --git a/src/languages/fr.ts b/src/languages/fr.ts
index 1b8cdc496e9..0d94315781e 100644
--- a/src/languages/fr.ts
+++ b/src/languages/fr.ts
@@ -5459,12 +5459,12 @@ ${amount} pour ${merchant} - ${date}`,
                         netSuiteAccountIDDescription: 'Dans NetSuite, accédez à *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[fr] Enable OAuth 2.0',
-                        description: '[fr] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'Activer OAuth 2.0',
+                        description: 'Dans NetSuite, allez dans *Setup > Company > Enable Features > SuiteCloud* > sous *Manage Authentication*, activez *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[fr] Enable REST web services',
-                        description: '[fr] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'Activer les services web REST',
+                        description: 'Dans NetSuite, accédez à *Setup > Company > Enable Features > SuiteCloud* puis, sous *SuiteTalk (Web Services)*, activez *REST Web Services*.',
                     },
                 },
             },
diff --git a/src/languages/it.ts b/src/languages/it.ts
index e8659c9e177..753db5e74d7 100644
--- a/src/languages/it.ts
+++ b/src/languages/it.ts
@@ -5423,12 +5423,12 @@ ${amount} per ${merchant} - ${date}`,
                         netSuiteAccountIDDescription: 'In NetSuite, vai a *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[it] Enable OAuth 2.0',
-                        description: '[it] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'Abilita OAuth 2.0',
+                        description: 'In NetSuite, vai su *Setup > Company > Enable Features > SuiteCloud* > sotto *Manage Authentication*, abilita *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[it] Enable REST web services',
-                        description: '[it] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'Abilita servizi web REST',
+                        description: 'In NetSuite, vai su *Setup > Company > Enable Features > SuiteCloud* > sotto *SuiteTalk (Web Services)*, abilita *REST Web Services*.',
                     },
                 },
             },
diff --git a/src/languages/ja.ts b/src/languages/ja.ts
index 98b3ddf2771..484a09e1b72 100644
--- a/src/languages/ja.ts
+++ b/src/languages/ja.ts
@@ -5366,12 +5366,12 @@ ${integrationName === CONST.ONBOARDING_ACCOUNTING_MAPPING.other ? 'あなたの'
                         netSuiteAccountIDDescription: 'NetSuite で、*Setup > Integration > SOAP Web Services Preferences* に移動します。',
                     },
                     enableOAuth: {
-                        title: '[ja] Enable OAuth 2.0',
-                        description: '[ja] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'OAuth 2.0 を有効にする',
+                        description: 'NetSuite で、*Setup > Company > Enable Features > SuiteCloud* に進み、*Manage Authentication* 内の *OAuth 2.0* を有効にします。',
                     },
                     enableRestWebServices: {
-                        title: '[ja] Enable REST web services',
-                        description: '[ja] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'REST Web サービスを有効にする',
+                        description: 'NetSuite で、*Setup > Company > Enable Features > SuiteCloud* に移動し、*SuiteTalk (Web Services)* セクション内で *REST Web Services* を有効にします。',
                     },
                 },
             },
diff --git a/src/languages/nl.ts b/src/languages/nl.ts
index f605052ec30..6a3259633dd 100644
--- a/src/languages/nl.ts
+++ b/src/languages/nl.ts
@@ -5417,12 +5417,12 @@ ${amount} voor ${merchant} - ${date}`,
                         netSuiteAccountIDDescription: 'Ga in NetSuite naar *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[nl] Enable OAuth 2.0',
-                        description: '[nl] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'OAuth 2.0 inschakelen',
+                        description: 'Ga in NetSuite naar *Setup > Company > Enable Features > SuiteCloud* en schakel onder *Manage Authentication* de optie *OAuth 2.0* in.',
                     },
                     enableRestWebServices: {
-                        title: '[nl] Enable REST web services',
-                        description: '[nl] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'REST-webservices inschakelen',
+                        description: 'Ga in NetSuite naar *Setup > Company > Enable Features > SuiteCloud* en schakel onder *SuiteTalk (Web Services)* de optie *REST Web Services* in.',
                     },
                 },
             },
diff --git a/src/languages/pl.ts b/src/languages/pl.ts
index 3ed9d832b3c..c303642fc3c 100644
--- a/src/languages/pl.ts
+++ b/src/languages/pl.ts
@@ -5402,12 +5402,12 @@ ${amount} dla ${merchant} - ${date}`,
                         netSuiteAccountIDDescription: 'W NetSuite przejdź do *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[pl] Enable OAuth 2.0',
-                        description: '[pl] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'Włącz OAuth 2.0',
+                        description: 'W NetSuite przejdź do *Setup > Company > Enable Features > SuiteCloud* i w sekcji *Manage Authentication* włącz *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[pl] Enable REST web services',
-                        description: '[pl] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'Włącz usługi sieciowe REST',
+                        description: 'W NetSuite przejdź do *Setup > Company > Enable Features > SuiteCloud*, a następnie w sekcji *SuiteTalk (Web Services)* włącz *REST Web Services*.',
                     },
                 },
             },
diff --git a/src/languages/pt-BR.ts b/src/languages/pt-BR.ts
index 5644dbf4a25..c57587ffce6 100644
--- a/src/languages/pt-BR.ts
+++ b/src/languages/pt-BR.ts
@@ -5411,12 +5411,12 @@ ${amount} para ${merchant} - ${date}`,
                         netSuiteAccountIDDescription: 'No NetSuite, acesse *Setup > Integration > SOAP Web Services Preferences*.',
                     },
                     enableOAuth: {
-                        title: '[pt-BR] Enable OAuth 2.0',
-                        description: '[pt-BR] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: 'Ativar OAuth 2.0',
+                        description: 'No NetSuite, vá em *Setup > Company > Enable Features > SuiteCloud* e, em *Manage Authentication*, ative *OAuth 2.0*.',
                     },
                     enableRestWebServices: {
-                        title: '[pt-BR] Enable REST web services',
-                        description: '[pt-BR] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: 'Ativar serviços web REST',
+                        description: 'No NetSuite, vá para *Setup > Company > Enable Features > SuiteCloud* > em *SuiteTalk (Web Services)*, ative *REST Web Services*.',
                     },
                 },
             },
diff --git a/src/languages/zh-hans.ts b/src/languages/zh-hans.ts
index 503a8c3852c..984925b04db 100644
--- a/src/languages/zh-hans.ts
+++ b/src/languages/zh-hans.ts
@@ -5242,12 +5242,12 @@ ${amount},商户:${merchant} - 日期:${date}`,
                         netSuiteAccountIDDescription: '在 NetSuite 中,前往 *Setup > Integration > SOAP Web Services Preferences*。',
                     },
                     enableOAuth: {
-                        title: '[zh-hans] Enable OAuth 2.0',
-                        description: '[zh-hans] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *Manage Authentication*, enable *OAuth 2.0*.',
+                        title: '启用 OAuth 2.0',
+                        description: '在 NetSuite 中,依次前往 *Setup > Company > Enable Features > SuiteCloud*,在 *Manage Authentication* 下启用 *OAuth 2.0*。',
                     },
                     enableRestWebServices: {
-                        title: '[zh-hans] Enable REST web services',
-                        description: '[zh-hans] In NetSuite, go to *Setup > Company > Enable Features > SuiteCloud* > under *SuiteTalk (Web Services)*, enable *REST Web Services*.',
+                        title: '启用 REST 网络服务',
+                        description: '在 NetSuite 中,依次前往 *Setup > Company > Enable Features > SuiteCloud*,在 *SuiteTalk(Web Services)* 下启用 *REST Web Services*。',
                     },
                 },
             },

Note

You can apply these changes to your branch by copying the patch to your clipboard, then running pbpaste | git apply 😉

View workflow run

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants