Remove unused workflows
This commit is contained in:
parent
ccf72eee4b
commit
ced9d41f55
18
.github/workflows/build.yaml
vendored
18
.github/workflows/build.yaml
vendored
@ -1,18 +0,0 @@
|
|||||||
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
|
|
@ -1,4 +1,4 @@
|
|||||||
name: .NET
|
name: 'Build Plugin'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Install fpcalc
|
- name: Install fpcalc
|
||||||
run: apt install -y libchromaprint-tools
|
run: sudo apt install -y libchromaprint-tools
|
||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal
|
run: dotnet test --no-build --verbosity normal
|
||||||
- name: Build
|
- name: Build
|
14
.github/workflows/bump-version.yaml
vendored
14
.github/workflows/bump-version.yaml
vendored
@ -1,14 +0,0 @@
|
|||||||
name: "🆙 Bump Version"
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- published
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/bump-version.yaml@master
|
|
||||||
with:
|
|
||||||
csproj-name: ConfusedPolarBear.Plugin.IntroSkipper
|
|
||||||
is-unstable: ${{ github.event.release.prerelease }}
|
|
20
.github/workflows/changelog.yaml
vendored
20
.github/workflows/changelog.yaml
vendored
@ -1,20 +0,0 @@
|
|||||||
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: jellyfin/jellyfin-plugin-template
|
|
||||||
secrets:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
13
.github/workflows/command-dispatch.yaml
vendored
13
.github/workflows/command-dispatch.yaml
vendored
@ -1,13 +0,0 @@
|
|||||||
# 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: .
|
|
16
.github/workflows/command-rebase.yaml
vendored
16
.github/workflows/command-rebase.yaml
vendored
@ -1,16 +0,0 @@
|
|||||||
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 }}
|
|
18
.github/workflows/publish.yaml
vendored
18
.github/workflows/publish.yaml
vendored
@ -1,18 +0,0 @@
|
|||||||
name: '🚀 Publish Plugin'
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- released
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/publish.yaml@master
|
|
||||||
with:
|
|
||||||
version: ${{ github.event.release.tag_name }}
|
|
||||||
is-unstable: ${{ github.event.release.prerelease }}
|
|
||||||
secrets:
|
|
||||||
deploy-host: ${{ secrets.DEPLOY_HOST }}
|
|
||||||
deploy-user: ${{ secrets.DEPLOY_USER }}
|
|
||||||
deploy-key: ${{ secrets.DEPLOY_KEY }}
|
|
12
.github/workflows/scan-codeql.yaml
vendored
12
.github/workflows/scan-codeql.yaml
vendored
@ -1,12 +0,0 @@
|
|||||||
name: '🔬 Run CodeQL'
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
pull_request:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/scan-codeql.yaml@master
|
|
||||||
with:
|
|
||||||
repository-name: jellyfin/jellyfin-plugin-template
|
|
12
.github/workflows/sync-labels.yaml
vendored
12
.github/workflows/sync-labels.yaml
vendored
@ -1,12 +0,0 @@
|
|||||||
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 }}
|
|
Loading…
x
Reference in New Issue
Block a user