mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-09-15 19:23:25 +00:00
run checks on release branches (#3267)
This commit is contained in:
parent
820742cac7
commit
2b803a265b
4
.github/workflows/black.yml
vendored
4
.github/workflows/black.yml
vendored
@ -3,6 +3,10 @@ name: Black
|
||||
on:
|
||||
workflow_dispatch: # Activate this workflow manually
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
# release branches have the form v1.9.x
|
||||
- 'v[0-9].*[0-9].x'
|
||||
|
||||
jobs:
|
||||
|
||||
|
2
.github/workflows/docker_release.yml
vendored
2
.github/workflows/docker_release.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- v*
|
||||
- 'v[0-9].*[0-9].*[0-9]?(rc[0-9])'
|
||||
|
||||
env:
|
||||
DOCKER_REPO_NAME: deepset/haystack
|
||||
|
3
.github/workflows/readme_integration.yml
vendored
3
.github/workflows/readme_integration.yml
vendored
@ -4,6 +4,9 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
# release branches have the form v1.9.x
|
||||
- 'v[0-9].*[0-9].x'
|
||||
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
|
4
.github/workflows/schemas.yml
vendored
4
.github/workflows/schemas.yml
vendored
@ -3,6 +3,10 @@ name: Schemas
|
||||
on:
|
||||
workflow_dispatch: # Activate this workflow manually
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
# release branches have the form v1.9.x
|
||||
- 'v[0-9].*[0-9].x'
|
||||
|
||||
jobs:
|
||||
|
||||
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -5,6 +5,8 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
# release branches have the form v1.9.x
|
||||
- 'v[0-9].*[0-9].x'
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
|
Loading…
x
Reference in New Issue
Block a user