remove an environment variable from jellyfin that is no longer valid post 10.9.0 #7857
This file contains 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
on: | |
pull_request: | |
jobs: | |
presubmit-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- id: changed | |
uses: tj-actions/changed-files@6b2903bdce6310cfbddd87c418f253cf29b2dec9 # v44.5.6 | |
with: | |
files_yaml: | | |
automated: | |
- ./images/** | |
- ./tflib/** | |
- ./.terraform.lock.hcl | |
- ./Makefile | |
- ./main.tf | |
- ./generated.tf | |
- ./go.mod | |
- ./go.sum | |
- if: steps.changed.outputs.automated_any_modified == 'true' | |
run: | | |
echo "You have made changes to files that are managed by automation." | |
exit 1 |