1
0
mirror of synced 2026-01-05 12:07:35 -05:00

Update section-run-on-specific-branches-or-tags.md

This commit is contained in:
Cerino O. Ligutom III
2022-01-19 11:43:19 +08:00
committed by GitHub
parent 2d7cb712d5
commit ecc68839ab

View File

@@ -7,7 +7,7 @@ Use the `tags` filter when you want to include tag name patterns or when you wan
If you define only `tags`/`tag-ignore` or only `branches`/`branches-ignore`, the workflow won't run for events affecting the undefined Git ref. If you define neither `tags`/`tag-ignore` or `branches`/`branches-ignore`, the workflow will run for events affecting either branches or tags. If you define both `branches`/`branches-ignore` and [`paths`](#onpushpull_requestpull_request_targetpathspaths-ignore), the workflow will only run when both filters are satisfied.
The `branches`, `branches-ignore`, `tags`, and `tags-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch or tag name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](#filter-pattern-cheat-sheet)."
The `branches`, `branches-ignore`, `tags`, and `tags-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch or tag name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](/articles/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)."
#### Example: Including branches and tags