Replies: 1 comment
-
GitHub Copilot is built as an AI assistant that works interactively inside code editors like VS Code. It doesn’t currently have an API or integration that allows it to be triggered automatically from GitHub Actions or other CI/CD workflows. If you want to automate PR creation based on GitHub Issues, a good alternative is to use OpenAI’s API (for example, GPT models) in your GitHub Actions workflow. Your workflow can: Read the issue content. Send it to the OpenAI API to generate code, commit messages, or PR descriptions. Use the GitHub API to create a branch, commit the generated code, and open a pull request automatically. This approach lets you programmatically create PRs driven by AI without manual intervention. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
Misc
Discussion Details
I have purchased 39 dollar Copilot pro Plus Subscription !
I am creating Github Issue via my Github Actions Workflow
Now i want to automate the PR creation for each Github Issue- using Copilot Coding Agent for each Github Issue via my Github Actions Workflow !!
But i am not able to trigger the Copilot to trigger the PR's !!
Any suggestions please ??
Beta Was this translation helpful? Give feedback.
All reactions