@pilatos/bitbucket-cli 1.2.0 → 1.3.1

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.
Files changed (3) hide show
  1. package/README.md +12 -1
  2. package/dist/index.js +678 -170
  3. package/package.json +8 -8
package/README.md CHANGED
@@ -83,7 +83,7 @@ bb pr list
83
83
  |----------|----------|
84
84
  | **Authentication** | `login`, `logout`, `status`, `token` |
85
85
  | **Repositories** | `clone`, `create`, `list`, `view`, `delete` |
86
- | **Pull Requests** | `create`, `list`, `view`, `edit`, `merge`, `approve`, `decline`, `checkout`, `diff`, `comment`, `comments` |
86
+ | **Pull Requests** | `create`, `list`, `view`, `edit`, `merge`, `approve`, `decline`, `ready`, `checkout`, `diff`, `comment`, `comments` |
87
87
  | **Configuration** | `get`, `set`, `list` |
88
88
  | **Shell Completion** | `install`, `uninstall` |
89
89
 
@@ -138,10 +138,21 @@ bb pr list
138
138
 
139
139
  # Review and merge
140
140
  bb pr view 42
141
+ bb pr activity 42
141
142
  bb pr approve 42
142
143
  bb pr merge 42
143
144
  ```
144
145
 
146
+ ### Draft Pull Requests
147
+
148
+ ```bash
149
+ # Create a draft PR for early feedback
150
+ bb pr create --title "WIP: Add new feature" --draft
151
+
152
+ # Mark it ready for review when done
153
+ bb pr ready 123
154
+ ```
155
+
145
156
  ### Scripting with JSON
146
157
 
147
158
  ```bash