chore(map): Map cleanup #6075
This file contains 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
# This workflow enables developers to call PR-Agents `/[actions]` in PR's comments and upon PR creation. | |
# Learn more at https://www.codium.ai/pr-agent/ | |
name: PR-Agent | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review] | |
issue_comment: | |
jobs: | |
pr_agent_job: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: write | |
name: Run pr agent on every pull request, respond to user comments | |
if: ${{ github.event.sender.type != 'Bot' }} | |
steps: | |
- name: PR Agent action step | |
id: pragent | |
uses: Codium-ai/pr-agent@main | |
env: | |
OPENAI_KEY: ${{ secrets.TONYS_OPENAI_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
github_action_config.auto_review: 'false' | |
github_action_config.auto_describe: 'false' | |
github_action_config.auto_improve: 'false' |