1
0
mirror of synced 2025-12-23 11:54:18 -05:00

Fix example of actions filtering (#20207)

This commit is contained in:
Cameron Booth
2021-07-01 14:25:34 -07:00
committed by GitHub
parent 781cfdbe3a
commit 284aceef8f

View File

@@ -1320,7 +1320,7 @@ You can use special characters in path, branch, and tag filters.
- `*`: Matches zero or more characters, but does not match the `/` character. For example, `Octo*` matches `Octocat`. - `*`: Matches zero or more characters, but does not match the `/` character. For example, `Octo*` matches `Octocat`.
- `**`: Matches zero or more of any character. - `**`: Matches zero or more of any character.
- `?`: Matches zero or one single character. For example, `Octoc?t` matches `Octocat`. - `?`: Matches zero or one of the preceding character.
- `+`: Matches one or more of the preceding character. - `+`: Matches one or more of the preceding character.
- `[]` Matches one character listed in the brackets or included in ranges. Ranges can only include `a-z`, `A-Z`, and `0-9`. For example, the range`[0-9a-z]` matches any digit or lowercase letter. For example, `[CB]at` matches `Cat` or `Bat` and `[1-2]00` matches `100` and `200`. - `[]` Matches one character listed in the brackets or included in ranges. Ranges can only include `a-z`, `A-Z`, and `0-9`. For example, the range`[0-9a-z]` matches any digit or lowercase letter. For example, `[CB]at` matches `Cat` or `Bat` and `[1-2]00` matches `100` and `200`.
- `!`: At the start of a pattern makes it negate previous positive patterns. It has no special meaning if not the first character. - `!`: At the start of a pattern makes it negate previous positive patterns. It has no special meaning if not the first character.