From 2c7baeee63524644e865d369b78a075324f8f023 Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Fri, 23 Sep 2022 10:55:34 +0200 Subject: [PATCH] Consistent `paths` patterns examples --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3c71c6a..834bd73 100644 --- a/README.md +++ b/README.md @@ -103,12 +103,12 @@ A YAML-string with named [`paths_ignore`](#paths_ignore) / [`paths`](#paths) pat ```yaml frontend: paths_ignore: - - 'frontend/docs/**/*' + - 'frontend/docs/**' paths: - - 'frontend/**/*' + - 'frontend/**' backend: paths: - - 'backend/**/*' + - 'backend/**' ### Here you can optionally control/limit backtracking # Boolean or number (default: true) # 'false' means disable backtracking completely @@ -313,12 +313,12 @@ jobs: paths_filter: | frontend: paths_ignore: - - 'frontend/docs/**/*' + - 'frontend/docs/**' paths: - - 'frontend/**/*' + - 'frontend/**' backend: paths: - - 'backend/**/*' + - 'backend/**' # Can be mixed with the "global" 'paths_ignore' / 'paths' options, for example: # paths_ignore: '["**/README.md"]'