From a18cf333baafe37304d01f8b2b20b95d8185b2de Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Sun, 18 Feb 2024 20:37:26 +0100 Subject: [PATCH] [skip ci] Fix paths-ignore glob pattern * does not work for nested files. --- .github/workflows/push.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 96e721749f8..e08b2539bb7 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -2,7 +2,7 @@ name: Push on: push: paths-ignore: - - docs/* + - docs/** - NEWS - UPGRADING - UPGRADING.INTERNALS @@ -11,8 +11,8 @@ on: - CODING_STANDARDS.md - .cirrus.yml - .travis.yml - - travis/* - - .circleci/* + - travis/** + - .circleci/** branches: - PHP-7.4 - PHP-8.0 @@ -21,7 +21,7 @@ on: - master pull_request: paths-ignore: - - docs/* + - docs/** - NEWS - UPGRADING - UPGRADING.INTERNALS @@ -30,8 +30,8 @@ on: - CODING_STANDARDS.md - .cirrus.yml - .travis.yml - - travis/* - - .circleci/* + - travis/** + - .circleci/** branches: - '**' concurrency: