Skip to content
Draft
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
2 changes: 1 addition & 1 deletion docs/admin/infrastructure/scale-utility.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ wish to clean up all workspaces, you can run the following command:
```sh
coder exp scaletest cleanup \
--cleanup-job-timeout 2h \
--cleanup-timeout 15min
--cleanup-timeout 15m
```

This will delete all workspaces and users with the prefix `scaletest-`.
Expand Down
5 changes: 3 additions & 2 deletions docs/admin/integrations/dx-data-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ If your organization already uses the Coder-DX integration, you can find a list

### CLI

Use `users list` to export the list of users to a CSV file:
Use `users list` with `jq` to export the list of users to a CSV file:

```sh
coder users list > users.csv
coder users list --output json | \
jq -r '["username","email","created_at","status"], (.[] | [.username, .email, .created_at, .status]) | @csv' > users.csv
```

Visit the [users list](../../reference/cli/users_list.md) documentation for more options.
Expand Down
5 changes: 1 addition & 4 deletions docs/ai-coder/github-to-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

This guide walks you through how to configure GitHub and Coder together so that you can tag Coder in a GitHub issue comment, and securely delegate work to coding agents in a Coder Task.

## Implementing the GHA

Check warning on line 23 in docs/ai-coder/github-to-tasks.md

View workflow job for this annotation

GitHub Actions / lint-docs

Coder.GerundHeading

Heading starts with an -ing word ('Implementing'); prefer the imperative ('Install') or the noun ('Installation'). See capitalization-and-punctuation.md#no-gerund-leading-headings.

The below steps outline how to use the Coder [Create Task Action GHA](https://github.com/coder/create-task-action) in a GitHub workflow to solve a bug. The guide makes the following assumptions:

Expand Down Expand Up @@ -99,9 +99,6 @@
```sh
# List all templates in your organization
coder templates list

# List templates in a specific organization
coder templates list --org your-org-name
```

You can also choose to modify the other [input parameters](https://github.com/coder/create-task-action?tab=readme-ov-file#inputs) to better fit your desired workflow.
Expand Down Expand Up @@ -229,7 +226,7 @@

**Solution:**

1. Verify the template name using: `coder templates list --org your-org-name`
1. Verify the template name using: `coder templates list`
1. Update the `coder-template-name` input in your workflow file to match exactly, or input secret or variable saved in GitHub
1. Ensure the template exists in the organization specified by `coder-organization`

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guides/workspace-access/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
> SSH command. For users who need the full functionality of SSH, use the
> configuration method below.

### Running remote commands with quoting

Check warning on line 46 in docs/user-guides/workspace-access/index.md

View workflow job for this annotation

GitHub Actions / lint-docs

Coder.GerundHeading

Heading starts with an -ing word ('Running'); prefer the imperative ('Install') or the noun ('Installation'). See capitalization-and-punctuation.md#no-gerund-leading-headings.

Arguments after `--` are joined with spaces into a single command
string before being sent to the workspace agent (per
Expand Down Expand Up @@ -228,7 +228,7 @@

You can also [share ports](./port-forwarding.md#sharing-ports) with other users,
or [port-forward](./port-forwarding.md#the-coder-port-forward-command) through
the CLI with `coder port forward`. Read more in the
the CLI with `coder port-forward`. Read more in the
[docs on workspace ports](./port-forwarding.md).

![Open Ports window](../../images/networking/listeningports.png)
Expand Down
Loading