1234567891011121314151617181920212223242526272829 |
- 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- with:
- repository: jellyfin/jellyfin-triage-script
- - name: install python
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
- with:
- python-version: '3.13'
- 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 }}
|