Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/provider/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
version: "3.9"
version: '3.9'
services:
radarr:
image: hotio/radarr:release-5.17.2.9580@sha256:6c6268bfc233c59c4726c79f40141a177b2927fb20eee0ab400d92e0f42fd448
image: ghcr.io/hotio/radarr:release-5.17.2.9580@sha256:6c6268bfc233c59c4726c79f40141a177b2927fb20eee0ab400d92e0f42fd448
container_name: radarr
depends_on:
- transmission
Expand All @@ -18,7 +18,7 @@ services:
- 7878:7878
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7878/system/status"]
test: ['CMD', 'curl', '-f', 'http://localhost:7878/system/status']
transmission:
image: linuxserver/transmission:latest
container_name: transmission
Expand All @@ -27,4 +27,4 @@ services:
- PGID=1000
- TZ=Europe/London
ports:
- 9091:9091
- 9091:9091
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.2.0"
}
11 changes: 11 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "python",
"packages": {
".": {
"extra-files": [
"galaxy.yml"
]
}
}
}
Loading