Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Buddy] ref_name に正規表現は使える #6

Open
srz-zumix opened this issue Mar 23, 2019 · 0 comments
Open

[Buddy] ref_name に正規表現は使える #6

srz-zumix opened this issue Mar 23, 2019 · 0 comments

Comments

@srz-zumix
Copy link
Owner

  1. One for all – enter * to run the pipeline for every branch and tag.
  2. Only for branches – refs/HEAD/* pattern will run the pipeline for every pushed branch.
  3. Only for tags – refs/tags/* pattern will run the pipeline for every pushed tag.
  4. 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.
  5. 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant