@proggarapsody/bitbottle 1.53.0 → 1.54.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 +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -219,6 +219,24 @@ Secured variables redact their value on read (TTY column shows
|
|
|
219
219
|
`<secured>`, JSON `value` shows `"<secured>"`). Use `--body=-` to read
|
|
220
220
|
the value from stdin so the secret never touches shell history.
|
|
221
221
|
|
|
222
|
+
### Pipeline Schedules _(Cloud only)_
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
# List all pipeline schedules for a repository
|
|
226
|
+
bitbottle pipeline schedule list MYWORKSPACE/my-service
|
|
227
|
+
|
|
228
|
+
# Create a schedule (runs daily at midnight on main)
|
|
229
|
+
bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
230
|
+
--cron "0 0 * * *" --branch main
|
|
231
|
+
|
|
232
|
+
# Create a disabled schedule
|
|
233
|
+
bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
234
|
+
--cron "0 12 * * 1" --branch develop --enabled=false
|
|
235
|
+
|
|
236
|
+
# Delete a schedule by UUID
|
|
237
|
+
bitbottle pipeline schedule delete MYWORKSPACE/my-service {uuid}
|
|
238
|
+
```
|
|
239
|
+
|
|
222
240
|
### Deployments & Environments _(Cloud only)_
|
|
223
241
|
|
|
224
242
|
```bash
|