You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One for all – enter * to run the pipeline for every branch and tag.
Only for branches – refs/HEAD/* pattern will run the pipeline for every pushed branch.
Only for tags – refs/tags/* pattern will run the pipeline for every pushed tag.
Refs name and refs path – patterns can be based on refs, e.g. dev* will run the pipeline for all tags and branches starting with dev. For more control, you can build a pattern on the ref's path, e.g. refs/tags/v* will run the pipeline only for tags starting with v.
Regex wildcard – to use regex, the whole pattern should be enclosed in (), e.g. (refs/tags/v.+) will run the pipeline only for tags starting with v, while (^((?!master$).)*$) will run the pipeline for all branches except master.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: