From: Viktor Szakats Date: Tue, 9 Jul 2024 20:56:12 +0000 (+0200) Subject: GHA/curl-for-win: don't run if only another CI was changed X-Git-Tag: curl-8_9_0~80 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b061fa2c4670b1cf44bcbf0452633d2068c321f0;p=thirdparty%2Fcurl.git GHA/curl-for-win: don't run if only another CI was changed Closes #14142 --- diff --git a/.github/workflows/curl-for-win.yml b/.github/workflows/curl-for-win.yml index c33269c681..d6c4f83bca 100644 --- a/.github/workflows/curl-for-win.yml +++ b/.github/workflows/curl-for-win.yml @@ -9,9 +9,29 @@ on: branches: - master - '*/ci' + paths-ignore: + - '**/*.md' + - '.azure-pipelines.yml' + - '.circleci/**' + - '.cirrus.yml' + - 'appveyor.*' + - 'packages/**' + - 'plan9/**' + - 'projects/**' + - 'winbuild/**' pull_request: branches: - master + paths-ignore: + - '**/*.md' + - '.azure-pipelines.yml' + - '.circleci/**' + - '.cirrus.yml' + - 'appveyor.*' + - 'packages/**' + - 'plan9/**' + - 'projects/**' + - 'winbuild/**' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}