From 126b949fca1d5df0993c1867089e92d5802255bc Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sun, 10 Dec 2023 03:29:17 -0700 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 327f069..e10b612 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,9 @@ Verify that certain files or directories did or did not change during the workfl * Detect changes to track and untracked files. * Restrict change detection to a subset of files: * Using [Glob pattern](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet) matching. + * Supports Globstar. + * Supports brace expansion. + * Supports negation. ## Usage @@ -61,8 +64,7 @@ Verify that certain files or directories did or did not change during the workfl *.txt test_directory action.yml - **/*.py - **/*.jpeg + **/*.{jpeg,py} !*.sql - name: Run step only when any of the above files change.