Skip to content

Commit

Permalink
ci: enable tests on release/** branches (#390)
Browse files Browse the repository at this point in the history
**Commit Message**

This is enabling the tests workflow on release/** branches for the
future backports etc.

Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
  • Loading branch information
mathetake authored Feb 20, 2025
1 parent 7cc39e5 commit c11e05f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@ name: Tests
on:
pull_request:
branches:
- main
- 'main'
# Release branches are like "release/v0.1", "release/v0.2", etc. where we backport the changes to non EOL versions (See RELEASES.md).
# The branch will be created from the main branch after the initial release tag is cut. For example, when we cut v0.8.0 release,
# we will create a branch "release/v0.8" from the main branch. For rc release, we simply iterate on main branch.
- 'release/**'
paths-ignore:
- '**/*.md'
- 'site/**'
- 'netlify.toml'

push:
branches:
- main
- 'main'
- 'release/**'
paths-ignore:
- '**/*.md'
- 'site/**'
Expand Down

0 comments on commit c11e05f

Please sign in to comment.