From 9e8fb0d153e875d281b893af47bc95a75a917b02 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Thu, 5 Oct 2023 08:55:15 -0300 Subject: [PATCH] Add comment workflow. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23abb817..5706cc7d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,8 @@ name: build jobs: phpunit: - if: github.event_name == 'pull_request' || github.event.repository.fork == true || (github.event_name == 'push' && github.ref == 'refs/heads/master') + # This workflow file runs actions for forked repositories, pull requests, and pushes to the master branch. + if: github.event.repository.fork == true || github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/master') uses: yiisoft/actions/.github/workflows/phpunit.yml@master with: os: >-