From e8fe02a26319a1772238f8c88c9f3e2d5c8ab0be Mon Sep 17 00:00:00 2001 From: kylegalbraith <1869717+kylegalbraith@users.noreply.github.com> Date: Wed, 16 Jul 2025 09:26:03 +0000 Subject: [PATCH] Update docs content from https://github.com/depot/app --- content/cache/authentication.mdx | 4 +++- content/cli/reference.mdx | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/content/cache/authentication.mdx b/content/cache/authentication.mdx index 7096228..9718287 100644 --- a/content/cache/authentication.mdx +++ b/content/cache/authentication.mdx @@ -4,7 +4,9 @@ ogTitle: Authentication for Depot remote caching description: Learn how to authenticate with Depot remote caching --- -Depot Cache supports authenticating with user tokens and organization tokens. Additionally, [Depot-managed GitHub Actions runners](/docs/github-actions/overview) are pre-configured with single-use job tokens. +Depot Cache supports authenticating with **user** tokens and **organization** tokens. Additionally, [Depot-managed GitHub Actions runners](/docs/github-actions/overview) are pre-configured with single-use job tokens. + +Project tokens are **not** supported for Depot cache. ## Token types diff --git a/content/cli/reference.mdx b/content/cli/reference.mdx index d05d969..fd7cedb 100644 --- a/content/cli/reference.mdx +++ b/content/cli/reference.mdx @@ -505,6 +505,36 @@ Additional flags that can be used with this command. | `token` | Depot token | {/* */} +### `depot projects delete` + +Delete a project from your Depot organization. This permanently removes the project and all associated build data. + +**Note: Only organization admins can delete projects.** + +**Example** + +```shell +depot projects delete +``` + +You can also use the `--project-id` flag to specify the project ID: + +```shell +depot projects delete --project-id +``` + +#### Flags for `delete` + +Additional flags that can be used with this command. + +{/* */} +| Name | Description | +| ---- | ----------- | +| `project-id` | Depot project ID | +| `yes` | Confirm deletion, skip the confirmation prompt | +| `token` | Depot token | +{/* */} + ### `depot projects list` Display an interactive listing of current Depot projects. Selecting a specific project will display the latest builds.