Skip to content

Commit

Permalink
Make CI run all branches on push (#5836)
Browse files Browse the repository at this point in the history
We create branches for patch versions that need to be verified by CI.

Reference:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet

> '**' : Matches all branch and tag names. This is the default behavior
when you don't use a branches or tags filter.
  • Loading branch information
ikhoon authored Jul 26, 2024
1 parent 8fb68c4 commit 5393507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- main
- "**"
tags-ignore:
# The release versions will be verified by 'publish-release.yml'
- armeria-*
Expand Down

0 comments on commit 5393507

Please sign in to comment.