name: Check Issue Template on: issues: types: - opened jobs: check_issue: runs-on: ubuntu-latest permissions: issues: write steps: - name: pull in script uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: repository: jellyfin/jellyfin-triage-script - name: install python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: python-version: '3.14' cache: 'pip' - name: install python packages run: pip install -r main-repo-triage/requirements.txt - name: check and comment issue working-directory: ./main-repo-triage run: python3 single_issue_gha.py env: GH_TOKEN: ${{ secrets.JF_BOT_TOKEN }} GH_REPO: ${{ github.repository }} ISSUE: ${{ github.event.issue.number }}