github-bot-sdk 0.2.1

A comprehensive Rust SDK for GitHub App integration with authentication, webhooks, and API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
# Additional Operations Interface Specification


**Module**: `github-bot-sdk::client::{issue, workflow, release}`
**Files**:

- `src/client/issue.rs``MilestonesClient`
- `src/client/workflow.rs``WorkflowsClient`
- `src/client/release.rs``ReleasesClient`

**Dependencies**: `InstallationClient`, `ApiError`, shared types

**Sub-client pattern**: All three clients follow ADR-003 — they are obtained via factory
methods on `InstallationClient` and are zero-cost to construct (no API call).

```rust
let milestones = client.milestones();   // → MilestonesClient
let workflows  = client.workflows();    // → WorkflowsClient
let releases   = client.releases();     // → ReleasesClient
```

## Overview


This specification covers additional GitHub operations for milestones, workflows, and releases. These are installation-scoped operations requiring appropriate repository permissions.

## Milestone Operations


See the authoritative specification in [milestones-client.md](./milestones-client.md).

### Types


#### Milestone


```rust
#[derive(Debug, Clone, Serialize, Deserialize)]

pub struct Milestone {
    pub id: u64,
    pub node_id: String,
    pub number: u64,
    pub title: String,
    pub description: Option<String>,
    pub state: MilestoneState,
    pub due_on: Option<DateTime<Utc>>,
    pub open_issues: u32,
    pub closed_issues: u32,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub closed_at: Option<DateTime<Utc>>,
}
```

#### MilestoneState


```rust
#[derive(Debug, Clone, Serialize, Deserialize)]

#[serde(rename_all = "lowercase")]

pub enum MilestoneState {
    Open,
    Closed,
}
```

### Operations


#### `list`


```rust
impl MilestonesClient {
    /// List all milestones in a repository (auto-paginated).
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — repository does not exist
    pub async fn list(
        &self,
        owner: &str,
        repo: &str,
        query: Option<ListMilestonesQuery>,
    ) -> Result<Vec<Milestone>, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/milestones?per_page=100`

#### `get`


```rust
impl MilestonesClient {
    /// Get a single milestone by its repository-scoped number.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — milestone does not exist
    pub async fn get(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
    ) -> Result<Milestone, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/milestones/{milestone_number}`

#### `create`


```rust
impl MilestonesClient {
    /// Create a new milestone.
    ///
    /// # Errors
    ///
    /// * `ApiError::InvalidRequest` — title is empty (422)
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateMilestoneRequest,
    ) -> Result<Milestone, ApiError>;
}
```

**Endpoint**: `POST /repos/{owner}/{repo}/milestones`

#### `update`


```rust
impl MilestonesClient {
    /// Update an existing milestone.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — milestone does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
        request: UpdateMilestoneRequest,
    ) -> Result<Milestone, ApiError>;
}
```

**Endpoint**: `PATCH /repos/{owner}/{repo}/milestones/{milestone_number}`

#### `delete`


```rust
impl MilestonesClient {
    /// Delete a milestone.
    ///
    /// Issues assigned to the deleted milestone are unlinked but otherwise unaffected.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — milestone does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn delete(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
    ) -> Result<(), ApiError>;
}
```

**Endpoint**: `DELETE /repos/{owner}/{repo}/milestones/{milestone_number}`
**Success**: 204 No Content

### Request Types


```rust
#[derive(Debug, Clone, Serialize)]

pub struct CreateMilestoneRequest {
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub state: Option<MilestoneState>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Default, Serialize)]

pub struct UpdateMilestoneRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub state: Option<MilestoneState>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<DateTime<Utc>>,
}
```

## Workflow Operations


### Types


#### Workflow


```rust
#[derive(Debug, Clone, Serialize, Deserialize)]

pub struct Workflow {
    pub id: u64,
    pub node_id: String,
    pub name: String,
    pub path: String,
    pub state: WorkflowState,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub url: String,
    pub html_url: String,
    pub badge_url: String,
}
```

#### WorkflowState


```rust
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]

#[serde(rename_all = "snake_case")]

pub enum WorkflowState {
    Active,
    DisabledManually,
    DisabledInactivity,
    DisabledFork,
    Deleted,
}
```

#### WorkflowRun


```rust
#[derive(Debug, Clone, Serialize, Deserialize)]

pub struct WorkflowRun {
    pub id: u64,
    pub node_id: String,
    pub name: String,
    pub run_number: u64,
    pub event: String,
    pub status: WorkflowRunStatus,
    pub conclusion: Option<WorkflowRunConclusion>,
    pub workflow_id: u64,
    pub head_branch: String,
    pub head_sha: String,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub url: String,
    pub html_url: String,
}
```

#### WorkflowRunStatus


```rust
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]

#[serde(rename_all = "snake_case")]

pub enum WorkflowRunStatus {
    Queued,
    InProgress,
    Completed,
    Waiting,
    Requested,
    Pending,
}
```

#### WorkflowRunConclusion


```rust
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]

#[serde(rename_all = "snake_case")]

pub enum WorkflowRunConclusion {
    Success,
    Failure,
    Cancelled,
    Skipped,
    TimedOut,
    ActionRequired,
    Stale,
    Neutral,
}
```

### Operations


#### `list`


```rust
impl WorkflowsClient {
    /// List workflows in a repository (auto-paginated).
    pub async fn list(
        &self,
        owner: &str,
        repo: &str,
    ) -> Result<Vec<Workflow>, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/actions/workflows`

#### `get`


```rust
impl WorkflowsClient {
    /// Get a specific workflow by ID.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — workflow doesn't exist
    pub async fn get(
        &self,
        owner: &str,
        repo: &str,
        workflow_id: u64,
    ) -> Result<Workflow, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}`

#### `trigger`


```rust
impl WorkflowsClient {
    /// Trigger a workflow dispatch event.
    ///
    /// # Errors
    ///
    /// * `ApiError::AuthorizationFailed` — missing `actions: write` permission
    /// * `ApiError::NotFound` — workflow doesn't exist or has no `workflow_dispatch` trigger
    pub async fn trigger(
        &self,
        owner: &str,
        repo: &str,
        workflow_id: u64,
        request: TriggerWorkflowRequest,
    ) -> Result<(), ApiError>;
}
```

**Endpoint**: `POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches`
**Success**: 204 No Content

#### `list_runs`


```rust
impl WorkflowsClient {
    /// List runs for a specific workflow (auto-paginated).
    pub async fn list_runs(
        &self,
        owner: &str,
        repo: &str,
        workflow_id: u64,
    ) -> Result<Vec<WorkflowRun>, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs`

#### `get_run`


```rust
impl WorkflowsClient {
    /// Get a specific workflow run by ID.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — run doesn't exist
    pub async fn get_run(
        &self,
        owner: &str,
        repo: &str,
        run_id: u64,
    ) -> Result<WorkflowRun, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/actions/runs/{run_id}`

#### `cancel_run`


```rust
impl WorkflowsClient {
    /// Cancel a workflow run.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — run doesn't exist
    pub async fn cancel_run(
        &self,
        owner: &str,
        repo: &str,
        run_id: u64,
    ) -> Result<(), ApiError>;
}
```

**Endpoint**: `POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel`
**Success**: 202 Accepted

#### `rerun_run`


```rust
impl WorkflowsClient {
    /// Re-run a workflow run.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — run doesn't exist
    pub async fn rerun_run(
        &self,
        owner: &str,
        repo: &str,
        run_id: u64,
    ) -> Result<(), ApiError>;
}
```

**Endpoint**: `POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun`
**Success**: 201 Created

### Request Types


```rust
#[derive(Debug, Clone, Serialize)]

pub struct TriggerWorkflowRequest {
    /// Git reference (branch or tag)
    #[serde(rename = "ref")]
    pub git_ref: String,

    /// Workflow inputs (key-value pairs)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub inputs: Option<std::collections::HashMap<String, String>>,
}
```

## Release Operations


### Types


#### Release


```rust
#[derive(Debug, Clone, Serialize, Deserialize)]

pub struct Release {
    pub id: u64,
    pub node_id: String,
    pub tag_name: String,
    pub target_commitish: String,
    pub name: Option<String>,
    pub body: Option<String>,
    pub draft: bool,
    pub prerelease: bool,
    pub author: IssueUser,
    pub created_at: DateTime<Utc>,
    pub published_at: Option<DateTime<Utc>>,
    pub url: String,
    pub html_url: String,
    pub assets: Vec<ReleaseAsset>,
}
```

### Operations


#### `list`


```rust
impl ReleasesClient {
    /// List releases in a repository (most recent first, auto-paginated).
    pub async fn list(
        &self,
        owner: &str,
        repo: &str,
    ) -> Result<Vec<Release>, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/releases`

#### `get`


```rust
impl ReleasesClient {
    /// Get a specific release by ID.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — release doesn't exist
    pub async fn get(
        &self,
        owner: &str,
        repo: &str,
        release_id: u64,
    ) -> Result<Release, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/releases/{release_id}`

#### `get_latest`


```rust
impl ReleasesClient {
    /// Get the latest published (non-draft, non-prerelease) release.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — no published release exists
    pub async fn get_latest(
        &self,
        owner: &str,
        repo: &str,
    ) -> Result<Release, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/releases/latest`

#### `get_by_tag`


```rust
impl ReleasesClient {
    /// Get a release by its tag name.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — no release for this tag
    pub async fn get_by_tag(
        &self,
        owner: &str,
        repo: &str,
        tag: &str,
    ) -> Result<Release, ApiError>;
}
```

**Endpoint**: `GET /repos/{owner}/{repo}/releases/tags/{tag}`

#### `create`


```rust
impl ReleasesClient {
    /// Create a new release.
    ///
    /// # Errors
    ///
    /// * `ApiError::AuthorizationFailed` — missing permission
    /// * `ApiError::InvalidRequest` — tag doesn't exist (422)
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateReleaseRequest,
    ) -> Result<Release, ApiError>;
}
```

**Endpoint**: `POST /repos/{owner}/{repo}/releases`

#### `update`


```rust
impl ReleasesClient {
    /// Update an existing release.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` — release doesn't exist
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        release_id: u64,
        request: UpdateReleaseRequest,
    ) -> Result<Release, ApiError>;
}
```

**Endpoint**: `PATCH /repos/{owner}/{repo}/releases/{release_id}`

#### `delete`


```rust
impl ReleasesClient {
    /// Delete a release.
    ///
    /// # Errors
    ///
    /// * `ApiError::AuthorizationFailed` — missing permission
    /// * `ApiError::NotFound` — release doesn't exist
    pub async fn delete(
        &self,
        owner: &str,
        repo: &str,
        release_id: u64,
    ) -> Result<(), ApiError>;
}
```

**Endpoint**: `DELETE /repos/{owner}/{repo}/releases/{release_id}`
**Success**: 204 No Content

### Request Types


```rust
#[derive(Debug, Clone, Serialize)]

pub struct CreateReleaseRequest {
    /// Tag name (required)
    pub tag_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target_commitish: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub draft: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prerelease: Option<bool>,
    /// Auto-generate release name and notes from merged PRs. Create-only.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub generate_release_notes: Option<bool>,
}

#[derive(Debug, Clone, Default, Serialize)]

pub struct UpdateReleaseRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub draft: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prerelease: Option<bool>,
}
```

## API Paths


### Milestones


- List: `GET /repos/{owner}/{repo}/milestones`
- Get / Update / Delete: `/repos/{owner}/{repo}/milestones/{milestone_number}`
- Create: `POST /repos/{owner}/{repo}/milestones`

### Workflows


- List workflows: `GET /repos/{owner}/{repo}/actions/workflows`
- Get workflow: `GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}`
- Trigger dispatch: `POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches`
- List runs: `GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs`
- Get / Cancel / Re-run: `/repos/{owner}/{repo}/actions/runs/{run_id}`

### Releases


- List: `GET /repos/{owner}/{repo}/releases`
- Get: `GET /repos/{owner}/{repo}/releases/{release_id}`
- Get latest: `GET /repos/{owner}/{repo}/releases/latest`
- Get by tag: `GET /repos/{owner}/{repo}/releases/tags/{tag}`
- Create: `POST /repos/{owner}/{repo}/releases`
- Update: `PATCH /repos/{owner}/{repo}/releases/{release_id}`
- Delete: `DELETE /repos/{owner}/{repo}/releases/{release_id}`

## References


- GitHub API: [Milestones]https://docs.github.com/en/rest/issues/milestones
- GitHub API: [Workflows]https://docs.github.com/en/rest/actions/workflows
- GitHub API: [Releases]https://docs.github.com/en/rest/releases/releases
- ADR-003: [Domain Sub-Client Pattern]../adr/ADR-003-sub-client-api-pattern.md