name: PR Summary and Inline Issues Check on: pull_request: types: [opened, synchronize, reopened] jobs: summarize_and_check: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v3 - name: Set Up Python uses: actions/setup-python@v4 with: python-version: '3.9' - name: Install Python Dependencies run: | python -m pip install --upgrade pip pip install requests - name: Run AI Analysis env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} GITHUB_TOKEN: ${{ secrets.G_TOKEN }} run: | python - <