[jellyfin] Add support for server versions > 10.8 #33
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow triggers the ci_build workflow when a pull request | |
# is labeled with 'rebuild'. | |
name: Trigger ci_build on label | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
trigger-build: | |
if: ${{ github.event.label.name == 'rebuild' }} | |
uses: ./.github/workflows/ci-build.yml |