- continue with glitch
- make function to delete files
- make function to create branch
- make function to create PR
- clean up
- tests?
Some graph QL stuff to automate Github PR creation:
{
repository(name: "terminator_rb", owner: "corroded") {
id
}
}
mutation {
createPullRequest(input: {
baseRefName: "test_branch",
headRefName: "master",
body: "test",
title: "another test",
repositoryId: repositoryId
}) {
clientMutationId
}
}