diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2024-06-06 23:45:05 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2024-06-12 21:42:59 +0100 |
commit | d7ec30c43aea185a8425e8c2ba3a6fbfdd24282b (patch) | |
tree | 6b07ce0015433491efdcb76595d6e59ea24d0997 /.github/workflows/ci.yml | |
parent | a7e3686aacc3ced28670b6e6c69508072e101e69 (diff) | |
download | unit-d7ec30c43aea185a8425e8c2ba3a6fbfdd24282b.tar.gz unit-d7ec30c43aea185a8425e8c2ba3a6fbfdd24282b.tar.bz2 |
ci: Limit when to run checks on pull-requests
Commit 4fc50258b ("ci: Be more specific when to run the main Unit
checks") limited when the checks for the main ci run, on pushes to
master.
It should have done the same for pull-requests.
Fixes: 4fc50258b ("ci: Be more specific when to run the main Unit checks")
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acb2b9f8..541b7201 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,13 @@ name: ci on: pull_request: + paths: + - configure + - 'auto/**' + - 'go/**' + - 'src/**' + - 'test/**' + - '.github/workflows/ci.yml' push: branches: master paths: |