ci: format github yml files
This commit is contained in:
parent
45afbed8b0
commit
27af7f29f4
1
.github/ISSUE_TEMPLATE/bug_report_form.yml
vendored
1
.github/ISSUE_TEMPLATE/bug_report_form.yml
vendored
@ -74,4 +74,3 @@ body:
|
||||
label: Jellyfin logs
|
||||
placeholder: Paste any relevant logs here
|
||||
render: shell
|
||||
|
||||
|
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@ -18,7 +18,7 @@ updates:
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
schedule:
|
||||
interval: monthly
|
||||
interval: weekly
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- ci
|
||||
|
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
@ -1,22 +1,22 @@
|
||||
name: 'Build Plugin'
|
||||
name: "Build Plugin"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
branches: ["master"]
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- 'docs/**'
|
||||
- 'images/**'
|
||||
- 'manifest.json'
|
||||
- "**/README.md"
|
||||
- ".github/ISSUE_TEMPLATE/**"
|
||||
- "docs/**"
|
||||
- "images/**"
|
||||
- "manifest.json"
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
branches: ["master"]
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- 'docs/**'
|
||||
- 'images/**'
|
||||
- 'manifest.json'
|
||||
- "**/README.md"
|
||||
- ".github/ISSUE_TEMPLATE/**"
|
||||
- "docs/**"
|
||||
- "images/**"
|
||||
- "manifest.json"
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@ -47,7 +47,7 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
node-version: "lts/*"
|
||||
|
||||
- name: Install html-minifier-terser
|
||||
run: npm install terser html-minifier-terser
|
||||
|
26
.github/workflows/codeql.yml
vendored
26
.github/workflows/codeql.yml
vendored
@ -2,21 +2,21 @@ name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches: [master]
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- 'docs/**'
|
||||
- 'images/**'
|
||||
- 'manifest.json'
|
||||
- "**/README.md"
|
||||
- ".github/ISSUE_TEMPLATE/**"
|
||||
- "docs/**"
|
||||
- "images/**"
|
||||
- "manifest.json"
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
branches: [master]
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- 'docs/**'
|
||||
- 'images/**'
|
||||
- 'manifest.json'
|
||||
- "**/README.md"
|
||||
- ".github/ISSUE_TEMPLATE/**"
|
||||
- "docs/**"
|
||||
- "images/**"
|
||||
- "manifest.json"
|
||||
|
||||
permissions: write-all
|
||||
|
||||
@ -31,7 +31,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'csharp' ]
|
||||
language: ["csharp"]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Release Plugin'
|
||||
name: "Release Plugin"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
@ -8,7 +8,6 @@ permissions:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
@ -22,7 +21,7 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
node-version: "lts/*"
|
||||
|
||||
- name: Install html-minifier-terser
|
||||
run: npm install terser html-minifier-terser
|
||||
@ -39,7 +38,7 @@ jobs:
|
||||
- name: Run update version
|
||||
uses: intro-skipper/intro-skipper-action-ts@main
|
||||
with:
|
||||
task-type: 'updateVersion'
|
||||
task-type: "updateVersion"
|
||||
|
||||
- name: Embed version info
|
||||
run: |
|
||||
@ -67,7 +66,7 @@ jobs:
|
||||
- name: Run validation and update script
|
||||
uses: intro-skipper/intro-skipper-action-ts@main
|
||||
with:
|
||||
task-type: 'updateManifest'
|
||||
task-type: "updateManifest"
|
||||
env:
|
||||
GITHUB_REPO_VISIBILITY: ${{ github.event.repository.visibility }}
|
||||
|
||||
|
2
.github/workflows/webui.yml
vendored
2
.github/workflows/webui.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
||||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '>=20'
|
||||
node-version: ">=20"
|
||||
- name: Checkout official jellyfin-web
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
|
Loading…
x
Reference in New Issue
Block a user