From 7cb93a35d7337c672ef45d6ef5b7dc6f253a3e3a Mon Sep 17 00:00:00 2001 From: punoko <36707250+punoko@users.noreply.github.com> Date: Wed, 4 Oct 2023 21:37:50 +0200 Subject: [PATCH] use per app calling workflows --- .github/workflows/bazarr.yml | 19 +++++++++++++++++++ .github/workflows/novnc.yml | 19 +++++++++++++++++++ .github/workflows/prowlarr.yml | 19 +++++++++++++++++++ .github/workflows/radarr.yml | 19 +++++++++++++++++++ .github/workflows/sonarr.yml | 19 +++++++++++++++++++ .github/workflows/transmission.yml | 19 +++++++++++++++++++ 6 files changed, 114 insertions(+) create mode 100644 .github/workflows/bazarr.yml create mode 100644 .github/workflows/novnc.yml create mode 100644 .github/workflows/prowlarr.yml create mode 100644 .github/workflows/radarr.yml create mode 100644 .github/workflows/sonarr.yml create mode 100644 .github/workflows/transmission.yml diff --git a/.github/workflows/bazarr.yml b/.github/workflows/bazarr.yml new file mode 100644 index 0000000..e5f6a7e --- /dev/null +++ b/.github/workflows/bazarr.yml @@ -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 + diff --git a/.github/workflows/novnc.yml b/.github/workflows/novnc.yml new file mode 100644 index 0000000..5123420 --- /dev/null +++ b/.github/workflows/novnc.yml @@ -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 + diff --git a/.github/workflows/prowlarr.yml b/.github/workflows/prowlarr.yml new file mode 100644 index 0000000..28d13fe --- /dev/null +++ b/.github/workflows/prowlarr.yml @@ -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 + diff --git a/.github/workflows/radarr.yml b/.github/workflows/radarr.yml new file mode 100644 index 0000000..f6cdfba --- /dev/null +++ b/.github/workflows/radarr.yml @@ -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 + diff --git a/.github/workflows/sonarr.yml b/.github/workflows/sonarr.yml new file mode 100644 index 0000000..e0cac7b --- /dev/null +++ b/.github/workflows/sonarr.yml @@ -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 + diff --git a/.github/workflows/transmission.yml b/.github/workflows/transmission.yml new file mode 100644 index 0000000..0be15b3 --- /dev/null +++ b/.github/workflows/transmission.yml @@ -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 +