From f05adb4f9915618acf65e2690ec9928c8ddde08e Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Tue, 25 Aug 2020 09:16:13 +0200 Subject: workflows: match every branch Previously, branches with `/` in the name wasn't being matched --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb7a7408d..11d64d539 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,8 @@ name: Continuous Integration on: push: branches: - - '*' - pull_request: [] + - '**' + pull_request: jobs: ci: -- cgit v1.2.3