1
0
mirror of synced 2025-12-22 11:26:57 -05:00

Update workflow-syntax-for-github-actions.md

This commit is contained in:
Albin PK
2022-02-05 22:47:31 +05:30
committed by GitHub
parent d2c79c2246
commit 9c71c6dc7f

View File

@@ -973,7 +973,7 @@ For more information about branch, tag, and path filter syntax, see "[`on.<push>
| `'**'` | Matches all branch and tag names. This is the default behavior when you don't use a `branches` or `tags` filter. | `all/the/branches`<br/><br/>`every/tag` |
| `'*feature'` | The `*` character is a special character in YAML. When you start a pattern with `*`, you must use quotes. | `mona-feature`<br/><br/>`feature`<br/><br/>`ver-10-feature` |
| `v2*` | Matches branch and tag names that start with `v2`. | `v2`<br/><br/>`v2.0`<br/><br/>`v2.9` |
| `v[12].[0-9]+.[0-9]+` | Matches all semantic versioning branches and tags with major version 1 or 2 | `v1.10.1`<br/><br/>`v2.0.0` |
| `v[12].[0-9]+.[0-9]+` | Matches all semantic versioning branches and tags with major version 1 or 2. | `v1.10.1`<br/><br/>`v2.0.0` |
### Patterns to match file paths