From 5b2307fa603813eb7226007310ab351223605426 Mon Sep 17 00:00:00 2001 From: Tomohiko Himura Date: Mon, 8 May 2023 10:38:21 +0900 Subject: [PATCH] chore(CI): execute CI when pull request from fork repository CI does not work because you cannot push from fork repository. Change pull request event. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24c6ad3..5323937 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,10 @@ name: ci -on: [push] +on: + push: + branches: + - master + pull_request: jobs: run-phpunit: