Skip to content

Commit

Permalink
use per app calling workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
punoko committed Oct 4, 2023
1 parent ff9b96e commit 7cb93a3
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bazarr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Bazarr

on:
push:
branches:
- main
paths:
- bazarr/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: bazarr

19 changes: 19 additions & 0 deletions .github/workflows/novnc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: noVNC

on:
push:
branches:
- main
paths:
- novnc/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: novnc

19 changes: 19 additions & 0 deletions .github/workflows/prowlarr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Prowlarr

on:
push:
branches:
- main
paths:
- prowlarr/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: prowlarr

19 changes: 19 additions & 0 deletions .github/workflows/radarr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Radarr

on:
push:
branches:
- main
paths:
- radarr/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: radarr

19 changes: 19 additions & 0 deletions .github/workflows/sonarr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Sonarr

on:
push:
branches:
- main
paths:
- sonarr/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: sonarr

19 changes: 19 additions & 0 deletions .github/workflows/transmission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Transmission

on:
push:
branches:
- main
paths:
- transmission/Dockerfile
workflow_dispatch:

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
permissions:
contents: read
packages: write
with:
app: transmission

0 comments on commit 7cb93a3

Please sign in to comment.