mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Some checks failed
OpenAPI / OpenAPI - Difference (push) Blocked by required conditions
OpenAPI / OpenAPI - HEAD (push) Waiting to run
OpenAPI / OpenAPI - BASE (push) Waiting to run
OpenAPI / OpenAPI - Publish Unstable Spec (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Stable Spec (push) Blocked by required conditions
Tests / run-tests (ubuntu-latest) (push) Waiting to run
Tests / run-tests (macos-latest) (push) Waiting to run
Tests / run-tests (windows-latest) (push) Waiting to run
Project Automation / Project board (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
CodeQL / Analyze (csharp) (push) Has been cancelled
30 lines
905 B
YAML
30 lines
905 B
YAML
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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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 }}
|