Skip to content

Update content from depot/app #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion content/cache/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
30 changes: 30 additions & 0 deletions content/cli/reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,36 @@ Additional flags that can be used with this command.
| `token` | Depot token |
{/* <!-- prettier-ignore-end --> */}

### `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 <project-id>
```

#### Flags for `delete`

Additional flags that can be used with this command.

{/* <!-- prettier-ignore-start --> */}
| Name | Description |
| ---- | ----------- |
| `project-id` | Depot project ID |
| `yes` | Confirm deletion, skip the confirmation prompt |
| `token` | Depot token |
{/* <!-- prettier-ignore-end --> */}

### `depot projects list`

Display an interactive listing of current Depot projects. Selecting a specific project will display the latest builds.
Expand Down