Skip to content

Commit

Permalink
ci: Trigger on release branches
Browse files Browse the repository at this point in the history
This commit updates the CI workflow to trigger on release branches.

Signed-off-by: Stephanos Ioannidis <[email protected]>
  • Loading branch information
stephanosio committed May 28, 2024
1 parent 6cb5aa8 commit 75e5bfd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ name: CI

on:
push:
branches: [ main ]
tags: [ 'v*' ]
branches:
- main
- v*-branch
tags:
- v*
pull_request:
branches: [ main ]
branches:
- main
- v*-branch

permissions:
packages: write
Expand Down

0 comments on commit 75e5bfd

Please sign in to comment.