Skip to content

Commit

Permalink
Add CI for release branches (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Dec 5, 2023
1 parent fa45b5c commit 490e8b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration.yml
Expand Up @@ -3,10 +3,12 @@ name: 'Integration'
on:
push:
branches:
- 'main'
- 'main'
- 'release/**/*'
pull_request:
branches:
- 'main'
- 'main'
- 'release/**/*'
workflow_dispatch:

concurrency:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- 'main'
- 'release/**/*'

jobs:
release:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/unit.yml
Expand Up @@ -3,10 +3,12 @@ name: 'Unit'
on:
push:
branches:
- 'main'
- 'main'
- 'release/**/*'
pull_request:
branches:
- 'main'
- 'main'
- 'release/**/*'
workflow_dispatch:

concurrency:
Expand Down

0 comments on commit 490e8b9

Please sign in to comment.