Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d5b0099
Nettoyage
chwps Mar 26, 2026
2c501f4
Mise à jour CI/CD : ajout du support de la branche dev
chwps Mar 26, 2026
37b2308
Ajout du Webhook pour gérer les notes 0,5/5 via collection
chwps Mar 26, 2026
c059093
Add WEBHOOK_COLLECTION to environment variables
chwps Mar 26, 2026
0408ecf
Ajout du Webhook pour gérer les notes 0,5/5 via collection
chwps Mar 26, 2026
bad99b7
Merge branch 'dev' of https://github.com/chwps/plex-watchlist-cleaner…
chwps Mar 26, 2026
7b658f5
Ajout du Webhook pour gérer les notes 0,5/5 via collection
chwps Mar 26, 2026
6152768
debug
chwps Mar 26, 2026
f2651f3
debug
chwps Mar 26, 2026
4e59c0f
debug
chwps Mar 26, 2026
c702867
debug
chwps Mar 26, 2026
71588df
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
c1ada8a
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
28abdad
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
8a03467
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
3627a12
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
6db7fb8
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
9215641
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
b85ff92
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
26d4685
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
1ead6e9
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
ed0e905
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
6112413
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
9c16d9d
Debug pour app Plex - Sync par token
chwps Mar 28, 2026
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
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Build & Push
on:
push:
branches: [main]
branches:
- main
- dev

jobs:
docker:
Expand All @@ -18,9 +20,19 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Définir le tag selon la branche
id: vars
run: |
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
echo "TAG=latest" >> $GITHUB_ENV
else
echo "TAG=dev" >> $GITHUB_ENV
fi

- name: Build & push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest
tags: ghcr.io/${{ github.repository }}:${{ env.TAG }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Checks for new media added to collections automatically.

### Exemple of Docker Compose yml :
```yaml
version: "3.9"
services:
plex-watchlist-cleaner:
image: ghcr.io/chwps/plex-watchlist-cleaner:latest
Expand All @@ -25,6 +24,7 @@ services:
PLEX_URL: "http://localhost:32400"
ADMIN_USERNAME: "adminUser"
COLLECTIONS: "Collection1,Collection2,Collection3" #No collection limit
WEBHOOK_COLLECTION: "Asking For Deletion" #Media that users rated 0.5 stars out of 5 will be added to this collection
CRON_SCHEDULE: "0 */1 * * *" # every hour
RUN_SYNC_AT_STARTUP: "true" #decide if it syncs directly or wait for cron, "true" or "false"
volumes:
Expand Down
Loading
Loading