From d7ec30c43aea185a8425e8c2ba3a6fbfdd24282b Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Thu, 6 Jun 2024 23:45:05 +0100 Subject: 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 --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.github/workflows') 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: -- cgit