summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2020-08-25 09:16:13 +0200
committerGitHub <noreply@github.com>2020-08-25 09:16:13 +0200
commitf05adb4f9915618acf65e2690ec9928c8ddde08e (patch)
tree62c286cd7f3f16160d85154ade4fc95435871790
parent3ebb91c07a2242e56db810371bc55cbab589209b (diff)
workflows: match every branch
Previously, branches with `/` in the name wasn't being matched
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
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: