From 445911a75f9efd6fe61e586ebed6a210d0efcd41 Mon Sep 17 00:00:00 2001
From: Mike Maietta
Date: Mon, 11 Mar 2024 19:32:20 -0700
Subject: [PATCH] chore(docs): update Bitbucket Options token doc (#8126)
---
.changeset/lucky-otters-report.md | 6 ++++++
docs/configuration/publish.md | 2 +-
packages/app-builder-lib/scheme.json | 2 +-
packages/builder-util-runtime/src/publishOptions.ts | 2 +-
4 files changed, 9 insertions(+), 3 deletions(-)
create mode 100644 .changeset/lucky-otters-report.md
diff --git a/.changeset/lucky-otters-report.md b/.changeset/lucky-otters-report.md
new file mode 100644
index 00000000000..ceb6aebb750
--- /dev/null
+++ b/.changeset/lucky-otters-report.md
@@ -0,0 +1,6 @@
+---
+"app-builder-lib": patch
+"builder-util-runtime": patch
+---
+
+chore(docs): update Bitbucket Options token doc
diff --git a/docs/configuration/publish.md b/docs/configuration/publish.md
index 2d4facc2872..1c2a45a7834 100644
--- a/docs/configuration/publish.md
+++ b/docs/configuration/publish.md
@@ -257,7 +257,7 @@ Define BITBUCKET_TOKEN
environment variable.
provider
“bitbucket” - The provider. Must be bitbucket
.
owner
String - Repository owner
-token
String | “undefined” - The app password (account>settings>app-passwords) to support auto-update from private bitbucket repositories.
+token
String | “undefined” - The app password to support auto-update from private bitbucket repositories.
username
String | “undefined” - The user name to support auto-update from private bitbucket repositories.
slug
String - Repository slug/name
channel
= latest
String | “undefined” - The channel.
diff --git a/packages/app-builder-lib/scheme.json b/packages/app-builder-lib/scheme.json
index 48365e49971..bd0b5023023 100644
--- a/packages/app-builder-lib/scheme.json
+++ b/packages/app-builder-lib/scheme.json
@@ -373,7 +373,7 @@
]
},
"token": {
- "description": "The app password (account>settings>app-passwords) to support auto-update from private bitbucket repositories.",
+ "description": "The [app password](https://bitbucket.org/account/settings/app-passwords) to support auto-update from private bitbucket repositories.",
"type": [
"null",
"string"
diff --git a/packages/builder-util-runtime/src/publishOptions.ts b/packages/builder-util-runtime/src/publishOptions.ts
index c2a848ff48f..2ee3353071d 100644
--- a/packages/builder-util-runtime/src/publishOptions.ts
+++ b/packages/builder-util-runtime/src/publishOptions.ts
@@ -226,7 +226,7 @@ export interface BitbucketOptions extends PublishConfiguration {
readonly owner: string
/**
- * The app password (account>settings>app-passwords) to support auto-update from private bitbucket repositories.
+ * The [app password](https://bitbucket.org/account/settings/app-passwords) to support auto-update from private bitbucket repositories.
*/
readonly token?: string | null