From 82c3ed7e7fdde35003236349a89368ed9b7cbacb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=A9rault?= Date: Fri, 15 Apr 2022 01:33:53 +0300 Subject: [PATCH] Update README.md Somehow this change is needed for the action to work as intended. --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 106b471a..ae1dbfe4 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ don't allow this because they don't work on a level of individual jobs or steps. with: filters: | src: - - 'src/**' + - 'src/**/*' # run only if some file in 'src' folder was changed - if: steps.changes.outputs.src == 'true' @@ -179,9 +179,9 @@ jobs: with: filters: | backend: - - 'backend/**' + - 'backend/**/*' frontend: - - 'frontend/**' + - 'frontend/**/*' # run only if 'backend' files were changed - name: backend tests @@ -220,9 +220,9 @@ jobs: with: filters: | backend: - - 'backend/**' + - 'backend/**/*' frontend: - - 'frontend/**' + - 'frontend/**/*' # JOB to build and test backend code backend: @@ -416,11 +416,11 @@ jobs: # src filter will match any path under common, config and src folders filters: | shared: &shared - - common/** - - config/** + - common/**/* + - config/**/* src: - *shared - - src/** + - src/**/* ``` @@ -439,8 +439,8 @@ jobs: # Multiple change types can be specified using `|` as the delimiter. filters: | shared: &shared - - common/** - - config/** + - common/**/* + - config/**/* addedOrModified: - added|modified: '**' allChanges: