ci(workflow): replace paths filter with paths-ignore to trigger on any change except .venv and __pycache__

This commit is contained in:
Murat ÖZDEMİR 2026-06-26 18:55:41 +03:00
parent e812a3b454
commit 656968823b
2 changed files with 6 additions and 10 deletions

View File

@ -4,11 +4,9 @@ on:
push:
branches:
- prod-env
paths:
- 'docker-stack-monitoring.yml'
- 'health-agent/deploy/prod.env'
- 'swag/**'
- '.gitea/workflows/deploy-monitoring-prod.yml'
paths-ignore:
- '**/.venv/**'
- '**/__pycache__/**'
concurrency:
group: prod-monitoring-deploy

View File

@ -4,11 +4,9 @@ on:
push:
branches:
- test
paths:
- 'docker-stack-monitoring.yml'
- 'health-agent/**'
- 'swag/**'
- '.gitea/workflows/deploy-monitoring-test.yml'
paths-ignore:
- '**/.venv/**'
- '**/__pycache__/**'
jobs:
deploy: