edit workflows to also run on pull_requests

This commit is contained in:
maxDorninger
2025-06-29 00:04:30 +02:00
parent b529c6cfcc
commit 3b3ce6b52f
3 changed files with 20 additions and 0 deletions

View File

@@ -15,6 +15,17 @@ on:
- 'uv.lock'
- '.github/workflows/build-push-backend.yml'
- 'tests/**'
pull_request:
paths:
- 'media_manager/**'
- 'alembic/**'
- 'alembic.ini'
- 'Dockerfile'
- 'pyproject.toml'
- 'uv.lock'
- '.github/workflows/build-push-backend.yml'
- 'tests/**'
workflow_dispatch:
jobs:

View File

@@ -9,6 +9,11 @@ on:
paths:
- 'web/**'
- '.github/workflows/build-push-frontend.yml'
pull_request:
paths:
- 'web/**'
- '.github/workflows/build-push-frontend.yml'
workflow_dispatch:
jobs:

View File

@@ -9,6 +9,10 @@ on:
paths:
- 'metadata_relay/**'
- '.github/workflows/python-lint_metadata_relay.yaml'
pull_request:
paths:
- 'metadata_relay/**'
- '.github/workflows/python-lint_metadata_relay.yaml'
workflow_dispatch:
jobs: