diff --git a/.github/workflows/issue-template-check.yml b/.github/workflows/issue-template-check.yml new file mode 100644 index 0000000000..c0c9b3db98 --- /dev/null +++ b/.github/workflows/issue-template-check.yml @@ -0,0 +1,29 @@ +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@v4 + with: + repository: jellyfin/jellyfin-triage-script + - name: install python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + 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 }}