| 15 | * Interface for pull request creation parameters |
| 16 | */ |
| 17 | export interface CreatePullRequestOptions { |
| 18 | sourceBranch: string; |
| 19 | targetBranch: string; |
| 20 | title: string; |
| 21 | description: string; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Create a pull request using GitHub API |
nothing calls this directly
no outgoing calls
no test coverage detected