chore(deps): update actions/checkout action to v7 #371
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: "AGENT: Pull request and issue AI agent" | |
| on: | |
| pull_request: | |
| issue_comment: | |
| jobs: | |
| pr_agent_job: | |
| runs-on: ubuntu-latest | |
| environment: PRAgent | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: write | |
| name: Run pr agent on every pull request, respond to user comments | |
| if: (github.actor == 'mansenfranzen') || (github.triggering_actor == 'mansenfranzen') | |
| steps: | |
| - name: PR Agent action step | |
| id: pragent | |
| uses: Codium-ai/pr-agent@main | |
| env: | |
| OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |