From 53935076e6ee8244282c20a84189cd21da31cb44 Mon Sep 17 00:00:00 2001 From: Ikhun Um Date: Fri, 26 Jul 2024 17:00:43 +0900 Subject: [PATCH] Make CI run all branches on push (#5836) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .github/workflows/actions_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index f072a34d976..42b933305e0 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -2,7 +2,7 @@ name: CI on: push: branches: - - main + - "**" tags-ignore: # The release versions will be verified by 'publish-release.yml' - armeria-*