feat: support generating PR title and description using AI-agents #25
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create PR To main | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| - _** | |
| jobs: | |
| create_pr_main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install uv | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sudo env UV_INSTALL_DIR="/usr/local/bin" sh | |
| - name: Create PR To main | |
| run: | | |
| uvx --from github-rest-api@latest create_pull_request \ | |
| --head-branch ${{ github.ref_name }} \ | |
| --base-branch main \ | |
| --token ${{ secrets.GITHUBACTIONS }} | |