Skip to content

checking in garbage code #20

checking in garbage code

checking in garbage code #20

Workflow file for this run

name: Senior Engineer GPT
on:
pull_request:
types: [opened, synchronize]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Python script
env:
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
python src/generate_comment.py ${{ github.event.pull_request.number }} ${{ github.event.pull_request.head.sha }}