Skip to content

Bump actions/checkout from 4 to 6 #4

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #4

Workflow file for this run

name: Llama Auto-Issue Generator
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, labeled]
permissions: read-all
concurrency:
group: ai-issue-${{ github.ref }}
cancel-in-progress: false
jobs:
analyze_code:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
issues: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install --no-cache-dir PyGithub==2.5.0 requests==2.32.3
- name: Run AI Analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
EVENT_NAME: ${{ github.event_name }}
COMMIT_SHA: ${{ github.sha }}
PR_NUMBER: ${{ github.event.pull_request.number }}
GH_MODELS_TOKEN: ${{ secrets.GH_MODELS_TOKEN }}
ALLOWED_USER: ${{ secrets.ALLOWED_USER }}
run: python "trigger action/trigger_action.py"