Test Updates for [Autoscaling.5] Amazon EC2 instances launched using Auto Scaling group launch configurations should not have Public IP addresses #3
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 Review Mode | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
process-pr-comment: | |
environment: dev | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '/update') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Run Non-functional Test Agent | |
uses: docker://docker.io/pranayc/codegen:github-action | |
env: | |
INPUT_FILE_PATH: ${{ vars.INPUT_FILE_PATH }} | |
OUTPUT_FILE_PATH: ${{ vars.OUTPUT_FILE_PATH }} | |
PIPELINE_TOKEN: ${{ vars.PIPELINE_TOKEN }} | |
GITHUB_TOKEN: ${{ vars.PIPELINE_TOKEN }} | |
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
FORCE_COLOR: 1 | |
MODEL: "sonnet" | |
NODE_OPTIONS: --no-warnings | |
PR_WORKFLOW: "true" | |
OUTPUTDIR: ${{ vars.OUTPUTDIR }} |