@proggarapsody/bitbottle 1.66.0 → 1.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -172,6 +172,10 @@ bitbottle pr files 42 --json status,path,additions,deletions
|
|
|
172
172
|
# PR participants (author, reviewers, observers)
|
|
173
173
|
bitbottle pr participants 42
|
|
174
174
|
bitbottle pr participants 42 --json role,display_name,username,approved
|
|
175
|
+
|
|
176
|
+
# Apply a suggested change (Bitbucket Server / DC only — commits to the PR branch)
|
|
177
|
+
bitbottle pr suggestion apply 42 COMMENT_ID SUGGESTION_ID
|
|
178
|
+
bitbottle pr suggestion apply 42 COMMENT_ID SUGGESTION_ID --preview # show without applying
|
|
175
179
|
```
|
|
176
180
|
|
|
177
181
|
### Repos & Branches
|
|
@@ -245,6 +249,16 @@ bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
|
245
249
|
bitbottle pipeline schedule delete MYWORKSPACE/my-service {uuid}
|
|
246
250
|
```
|
|
247
251
|
|
|
252
|
+
### Pipeline Caches _(Cloud only)_
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
# List all pipeline caches for a repository
|
|
256
|
+
bitbottle pipeline cache list MYWORKSPACE/my-service
|
|
257
|
+
|
|
258
|
+
# Delete a cache by UUID
|
|
259
|
+
bitbottle pipeline cache delete MYWORKSPACE/my-service {uuid}
|
|
260
|
+
```
|
|
261
|
+
|
|
248
262
|
### Deployments & Environments _(Cloud only)_
|
|
249
263
|
|
|
250
264
|
```bash
|