restrict workflows to certain paths
Some checks failed
Tests / test (push) Has been cancelled

This commit is contained in:
Tobias Brunner 2025-05-27 13:52:24 +02:00
parent 378f10c992
commit 52553796d3
No known key found for this signature in database
3 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,13 @@ on:
push: push:
tags: tags:
- "*" - "*"
paths:
- "deployment/**"
- "docker/**"
- "src/**"
- "Dockerfile"
- "pyproject.toml"
- "uv.lock"
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View file

@ -3,6 +3,13 @@ name: Build and Deploy Staging
on: on:
push: push:
branches: [main] branches: [main]
paths:
- "deployment/**"
- "docker/**"
- "src/**"
- "Dockerfile"
- "pyproject.toml"
- "uv.lock"
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View file

@ -23,6 +23,6 @@ jobs:
with: with:
token: ${{ secrets.RENOVATE_TOKEN }} token: ${{ secrets.RENOVATE_TOKEN }}
env: env:
LOG_LEVEL: info LOG_LEVEL: debug
RENOVATE_CONFIG_FILE: renovate.json RENOVATE_CONFIG_FILE: renovate.json
RENOVATE_ENDPOINT: ${{ vars.RENOVATE_ENDPOINT }} RENOVATE_ENDPOINT: ${{ vars.RENOVATE_ENDPOINT }}