From 3f172b72ebc7124920fbf8e56f0b4d0738f5a602 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Thu, 4 Jan 2024 23:43:35 +0800 Subject: [PATCH] GitHubCI: no need to just run in master branch When a contributor wants to create a PR for commitlint, the normal thing for him to do first is fork the repo and create a branch with a different name than master. Then, if he pushes his commits, he should be able to see the CI status of his fixes before he opens the PR. --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7e1e3cbb80..59f4763878 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - master + - '**' pull_request: types: [opened, synchronize]