deterministically set up working branch

This commit is contained in:
Colin McDonnell
2025-11-20 16:31:00 -08:00
parent 6c6b7b0b2d
commit 0ce1d9fd7b
4 changed files with 49 additions and 1 deletions
+6
View File
@@ -46,6 +46,7 @@ export type PayloadEvent =
pr_number: number;
pr_title: string;
pr_body: string | null;
branch: string;
[key: string]: any;
}
| {
@@ -53,6 +54,7 @@ export type PayloadEvent =
pr_number: number;
pr_title: string;
pr_body: string | null;
branch: string;
[key: string]: any;
}
| {
@@ -63,6 +65,7 @@ export type PayloadEvent =
review_state: string;
review_comments: any[];
context: any;
branch: string;
[key: string]: any;
}
| {
@@ -72,6 +75,7 @@ export type PayloadEvent =
comment_id: number;
comment_body: string;
thread?: any;
branch: string;
[key: string]: any;
}
| {
@@ -100,6 +104,7 @@ export type PayloadEvent =
comment_id: number;
comment_body: string;
issue_number: number;
branch?: string;
[key: string]: any;
}
| {
@@ -108,6 +113,7 @@ export type PayloadEvent =
pr_title: string;
pr_body: string | null;
pull_request: any;
branch: string;
check_suite: {
id: number;
head_sha: string;