This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 08ca90a
Showing
21 changed files
with
1,684 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
_extends: jellyfin-meta-plugins | ||
|
||
template: | | ||
<!-- Optional: add a release summary here --> | ||
## :sparkles: What's New | ||
$CHANGES |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"github>jellyfin/.github//renovate-presets/default" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: '🏗️ Build Plugin' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/*.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/build.yaml@master |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: '📝 Create/Update Release Draft & Release Bump PR' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- build.yaml | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: | ||
- update-prep-command | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/changelog.yaml@master | ||
with: | ||
repository-name: crobibero/jellyfin-plugin-lrclib | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Allows for the definition of PR and Issue /commands | ||
name: '📟 Slash Command Dispatcher' | ||
|
||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/command-dispatch.yaml@master | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: '🔀 PR Rebase Command' | ||
|
||
on: | ||
repository_dispatch: | ||
types: | ||
- rebase-command | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/command-rebase.yaml@master | ||
with: | ||
rebase-head: ${{ github.event.client_payload.pull_request.head.label }} | ||
repository-full-name: ${{ github.event.client_payload.github.payload.repository.full_name }} | ||
comment-id: ${{ github.event.client_payload.github.payload.comment.id }} | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: '🚀 Publish Plugin' | ||
|
||
on: | ||
release: | ||
types: | ||
- released | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
ref: "master" | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Setup jprm | ||
run: | | ||
pip install --user jprm | ||
- name: Build Jellyfin Plugin | ||
uses: oddstr13/jellyfin-plugin-repository-manager@eabb903cdac8a7f6d94df887c6910b5720ec48f9 # v1.0.11 | ||
id: jprm | ||
with: | ||
dotnet-target: net8.0 | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | ||
with: | ||
name: build-artifact | ||
retention-days: 30 | ||
if-no-files-found: error | ||
path: ${{ steps.jprm.outputs.artifact }} | ||
|
||
- name: Upload to Release | ||
id: release | ||
if: ${{ github.event_name == 'release' }} | ||
uses: shogo82148/actions-upload-release-asset@dccd6d23e64fd6a746dce6814c0bde0a04886085 # v1.7.2 | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
overwrite: true | ||
asset_path: ${{ steps.jprm.outputs.artifact }} | ||
|
||
- name: Update manifest | ||
run: | | ||
jprm repo add --plugin-url ${{ steps.release.outputs.browser_download_url }} ./manifest.json ${{ steps.jprm.outputs.artifact }} | ||
- name: Commit manifest | ||
run: | | ||
git config user.name jellyfin-bot | ||
git config user.email team@jellyfin.org | ||
git pull | ||
git add ./manifest.json | ||
git commit -m "Update manifest.json" | ||
git push --force origin master |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: '🔬 Run CodeQL' | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
branches: [ master ] | ||
paths-ignore: | ||
- '**/*.md' | ||
schedule: | ||
- cron: '24 2 * * 4' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/scan-codeql.yaml@master | ||
with: | ||
repository-name: crobibero/jellyfin-plugin-lrclib |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: '🏷️ Sync labels' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/sync-labels.yaml@master | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: '🧪 Test Plugin' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/*.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call: | ||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/test.yaml@master |
Oops, something went wrong.