Add account ID extraction and cleanup functionality in CSPM tests #1886
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
name: pr-agent | |
on: | |
pull_request: | |
issue_comment: | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
pr_agent_job: | |
# if: ${{ contains( github.event.pull_request.labels.*.name, 'AI') }} | |
runs-on: ubuntu-latest | |
name: Run pr agent on every pull request, respond to user comments | |
steps: | |
- name: PR Agent action step | |
continue-on-error: true | |
id: pragent | |
uses: Codium-ai/pr-agent@main | |
env: | |
OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |