File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
.github/actions/check-changed-files Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ description: |
99 - patterns_file: Path to a file containing glob patterns (relative to repository root).
1010 Lines starting with '#' and blank lines are ignored.
1111 - patterns: List of regex patterns (multiline string) to match against changed file paths.
12- Deprecated: prefer patterns_file.
1312
1413 Pattern syntax for patterns_file:
1514 - ** matches any path including directory separators (recursive)
@@ -27,7 +26,7 @@ inputs:
2726 description : ' Path to a file containing glob patterns (relative to repository root)'
2827 required : false
2928 patterns :
30- description : ' List of regex patterns to match against changed files (deprecated: prefer patterns_file) '
29+ description : ' List of regex patterns to match against changed files'
3130 required : false
3231
3332outputs :
@@ -110,7 +109,7 @@ runs:
110109 PATTERNS+=("$(glob_to_regex "$line")")
111110 done < "$FULL_PATH"
112111 elif [ -n "$PATTERNS_INPUT" ]; then
113- # Legacy: read raw regex patterns from the inline input
112+ # Read raw regex patterns from the inline input
114113 while IFS= read -r pattern; do
115114 # Remove leading/trailing whitespace
116115 pattern=$(echo "$pattern" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Lines starting with `#` and blank lines are ignored.
2626
2727### Examples
2828
29- ```
29+ ``` text
3030# All Markdown files anywhere in the repo
3131**.md
3232
You can’t perform that action at this time.
0 commit comments