From 45fe7beb6d1b7a5891a5e99523e0732f0143670c Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 9 Feb 2023 21:23:29 -0500 Subject: [PATCH] fix(ci): Add missing asterisk to path-ignore elements with nested structure --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e70ba41d..ae174d15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,14 +3,14 @@ on: pull_request: paths-ignore: - '*.md' - - '.examples/*' + - '.examples/**' push: branches: - master paths-ignore: - '*.md' - - '.github/*' - - '.examples/*' + - '.github/**' + - '.examples/**' jobs: test: runs-on: ubuntu-latest