Run CI on all PRs + release branches

This commit is contained in:
Quentin Gliech
2025-01-24 17:04:02 +01:00
parent 85bec646b9
commit 675c222d88
2 changed files with 6 additions and 3 deletions

View File

@@ -2,7 +2,9 @@ name: Build
on:
push:
branches: [main]
branches:
- main
- 'release/**'
tags:
- "v*"

View File

@@ -2,11 +2,12 @@ name: CI
on:
push:
branches: [ main ]
branches:
- main
- 'release/**'
tags:
- 'v*'
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}