Skip to content

Commit 6c9891b

Browse files
chore: regenerate skill files and command docs
1 parent 35a46e3 commit 6c9891b

File tree

2 files changed

+118
-7
lines changed

2 files changed

+118
-7
lines changed

docs/src/content/docs/commands/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The Sentry CLI provides commands for interacting with various Sentry resources.
1414
| [`dashboard`](./dashboard/) | Manage Sentry dashboards |
1515
| [`org`](./org/) | Work with Sentry organizations |
1616
| [`project`](./project/) | Work with Sentry projects |
17+
| [`release`](./release/) | Work with Sentry releases |
1718
| [`repo`](./repo/) | Work with Sentry repositories |
1819
| [`team`](./team/) | Work with Sentry teams |
1920
| [`issue`](./issue/) | Manage Sentry issues |

docs/src/content/docs/commands/release.md

Lines changed: 117 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,143 @@ Work with Sentry releases
1111

1212
List releases
1313

14-
### `sentry release view <org/version>`
14+
**Arguments:**
15+
16+
| Argument | Description |
17+
|----------|-------------|
18+
| `<org/project>` | &lt;org&gt;/ (all projects), &lt;org&gt;/&lt;project&gt;, or &lt;project&gt; (search) |
19+
20+
**Options:**
21+
22+
| Option | Description |
23+
|--------|-------------|
24+
| `-n, --limit <limit>` | Maximum number of releases to list (default: "30") |
25+
| `-f, --fresh` | Bypass cache, re-detect projects, and fetch fresh data |
26+
| `-c, --cursor <cursor>` | Navigate pages: "next", "prev", "first" (or raw cursor string) |
27+
28+
### `sentry release view <org/version...>`
1529

1630
View release details
1731

18-
### `sentry release create <org/version>`
32+
**Arguments:**
33+
34+
| Argument | Description |
35+
|----------|-------------|
36+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to view |
37+
38+
**Options:**
39+
40+
| Option | Description |
41+
|--------|-------------|
42+
| `-f, --fresh` | Bypass cache, re-detect projects, and fetch fresh data |
43+
44+
### `sentry release create <org/version...>`
1945

2046
Create a release
2147

22-
### `sentry release finalize <org/version>`
48+
**Arguments:**
49+
50+
| Argument | Description |
51+
|----------|-------------|
52+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to create |
53+
54+
**Options:**
55+
56+
| Option | Description |
57+
|--------|-------------|
58+
| `-p, --project <project>` | Associate with project(s), comma-separated |
59+
| `--finalize` | Immediately finalize the release (set dateReleased) |
60+
| `--ref <ref>` | Git ref (branch or tag name) |
61+
| `--url <url>` | URL to the release source |
62+
| `-n, --dry-run` | Show what would happen without making changes |
63+
64+
### `sentry release finalize <org/version...>`
2365

2466
Finalize a release
2567

26-
### `sentry release delete <org/version>`
68+
**Arguments:**
69+
70+
| Argument | Description |
71+
|----------|-------------|
72+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to finalize |
73+
74+
**Options:**
75+
76+
| Option | Description |
77+
|--------|-------------|
78+
| `--released <released>` | Custom release timestamp (ISO 8601). Defaults to now. |
79+
| `--url <url>` | URL for the release |
80+
81+
### `sentry release delete <org/version...>`
2782

2883
Delete a release
2984

30-
### `sentry release deploy <org/version> <environment> [name]`
85+
**Arguments:**
86+
87+
| Argument | Description |
88+
|----------|-------------|
89+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to delete |
90+
91+
**Options:**
92+
93+
| Option | Description |
94+
|--------|-------------|
95+
| `-y, --yes` | Skip confirmation prompt |
96+
| `-f, --force` | Force the operation without confirmation |
97+
| `-n, --dry-run` | Show what would happen without making changes |
98+
99+
### `sentry release deploy <org/version environment name...>`
31100

32101
Create a deploy for a release
33102

34-
### `sentry release set-commits <org/version>`
103+
**Arguments:**
104+
105+
| Argument | Description |
106+
|----------|-------------|
107+
| `<org/version environment name...>` | [&lt;org&gt;/]&lt;version&gt; &lt;environment&gt; [name] |
108+
109+
**Options:**
110+
111+
| Option | Description |
112+
|--------|-------------|
113+
| `--url <url>` | URL for the deploy |
114+
| `--started <started>` | Deploy start time (ISO 8601) |
115+
| `--finished <finished>` | Deploy finish time (ISO 8601) |
116+
| `-t, --time <time>` | Deploy duration in seconds (sets started = now - time, finished = now) |
117+
118+
### `sentry release deploys <org/version...>`
119+
120+
List deploys for a release
121+
122+
**Arguments:**
123+
124+
| Argument | Description |
125+
|----------|-------------|
126+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
127+
128+
### `sentry release set-commits <org/version...>`
35129

36130
Set commits for a release
37131

132+
**Arguments:**
133+
134+
| Argument | Description |
135+
|----------|-------------|
136+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
137+
138+
**Options:**
139+
140+
| Option | Description |
141+
|--------|-------------|
142+
| `--auto` | Use repository integration to auto-discover commits |
143+
| `--local` | Read commits from local git history |
144+
| `--clear` | Clear all commits from the release |
145+
| `--commit <commit>` | Explicit commit as REPO@SHA or REPO@PREV..SHA (comma-separated) |
146+
| `--initial-depth <initial-depth>` | Number of commits to read with --local (default: "20") |
147+
38148
### `sentry release propose-version`
39149

40-
Propose a release version (outputs the current git HEAD SHA)
150+
Propose a release version
41151

42152
All commands support `--json` for machine-readable output and `--fields` to select specific JSON fields.
43153

0 commit comments

Comments
 (0)