travis-conditions 0.0.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +65 -0
  3. data/Gemfile.lock +1 -1
  4. data/NOTES.md +107 -0
  5. data/README.md +261 -13
  6. data/bin/travis-conditions +34 -0
  7. data/lib/travis/conditions.rb +10 -16
  8. data/lib/travis/conditions/v0.rb +30 -0
  9. data/lib/travis/conditions/v0/data.rb +57 -0
  10. data/lib/travis/conditions/v0/eval.rb +70 -0
  11. data/lib/travis/conditions/v0/parser.rb +204 -0
  12. data/lib/travis/conditions/v1.rb +19 -0
  13. data/lib/travis/conditions/v1/boolean.rb +71 -0
  14. data/lib/travis/conditions/v1/data.rb +75 -0
  15. data/lib/travis/conditions/v1/eval.rb +114 -0
  16. data/lib/travis/conditions/v1/helper.rb +30 -0
  17. data/lib/travis/conditions/v1/parser.rb +214 -0
  18. data/lib/travis/conditions/version.rb +1 -1
  19. data/spec/conditions_spec.rb +15 -0
  20. data/spec/v0/conditions_spec.rb +15 -0
  21. data/spec/{data_spec.rb → v0/data_spec.rb} +6 -1
  22. data/spec/{eval_spec.rb → v0/eval_spec.rb} +1 -1
  23. data/spec/v0/fixtures/failures.txt +342 -0
  24. data/spec/v0/fixtures/passes.txt +1685 -0
  25. data/spec/{parser_spec.rb → v0/parser_spec.rb} +1 -1
  26. data/spec/v1/conditions_spec.rb +44 -0
  27. data/spec/v1/data_spec.rb +30 -0
  28. data/spec/v1/eval_spec.rb +349 -0
  29. data/spec/v1/fixtures/failures.txt +336 -0
  30. data/spec/v1/fixtures/passes.txt +1634 -0
  31. data/spec/v1/parser/boolean_spec.rb +215 -0
  32. data/spec/v1/parser/call_spec.rb +68 -0
  33. data/spec/v1/parser/comma_spec.rb +28 -0
  34. data/spec/v1/parser/cont_spec.rb +41 -0
  35. data/spec/v1/parser/eq_spec.rb +16 -0
  36. data/spec/v1/parser/in_list_spec.rb +60 -0
  37. data/spec/v1/parser/is_pred_spec.rb +24 -0
  38. data/spec/v1/parser/list_spec.rb +36 -0
  39. data/spec/v1/parser/operand_spec.rb +16 -0
  40. data/spec/v1/parser/parens_spec.rb +28 -0
  41. data/spec/v1/parser/quoted_spec.rb +24 -0
  42. data/spec/v1/parser/re_spec.rb +16 -0
  43. data/spec/v1/parser/regex_spec.rb +12 -0
  44. data/spec/v1/parser/space_spec.rb +40 -0
  45. data/spec/v1/parser/term_spec.rb +84 -0
  46. data/spec/v1/parser/val_spec.rb +24 -0
  47. data/spec/v1/parser/var_spec.rb +16 -0
  48. data/spec/v1/parser_spec.rb +486 -0
  49. data/spec/v1/user_spec.rb +223 -0
  50. metadata +48 -9
  51. data/lib/travis/conditions/data.rb +0 -45
  52. data/lib/travis/conditions/eval.rb +0 -68
  53. data/lib/travis/conditions/parser.rb +0 -202
@@ -0,0 +1,1634 @@
1
+ ( (type = pull_request AND branch != master) ) OR ( (branch = master) AND (tag IS present) )
2
+ ( NOT (tag IS present)) AND (branch = master) AND (type != pull_request)
3
+ ( NOT (tag IS present)) AND (branch = travis-stages) AND (type != pull_request)
4
+ ( NOT type = pull_request ) AND ( branch = master OR branch =~ ^[0-9]\.[0-9]$ )
5
+ ( NOT type = pull_request ) AND ( branch = master OR branch =~ ^[0-9]\.[0-9]$ ) AND repo = camptocamp/c2cgeoportal
6
+ ( NOT type = pull_request ) AND repo = camptocamp/c2cgeoportal
7
+ ( branch = master OR branch =~ ^release-(\d).(\d).(\d)$ )
8
+ ( branch = master OR branch ~= ^[0-9]\.[0-9]$ )
9
+ ( branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$ )
10
+ ( branch =~ extraci ) OR (repo = percona/percona-server) AND (type = push)
11
+ ( repo = lifeonairteam/stella )
12
+ (( branch = master OR branch =~ ^rough.$ ) AND ( repo = lifeonairteam/stella ))
13
+ (((type != pull_request) AND (branch = master)) OR (tag =~ ^\d+\.\d+\.\d+$))
14
+ ((NOT branch =~ ^develop/.*$) OR (branch = develop/travis)) AND (tag IS blank)
15
+ ((branch != master AND branch != integration/develop) OR type = cron OR type = api)
16
+ ((branch = master AND type IN (push, pull_request)) OR branch = Docs)
17
+ ((branch = master) AND (type IN (push)))
18
+ ((branch = master) OR (tag =~ ^\d+\.\d+\.\d+$))
19
+ ((repo = boostorg/date_time) AND (branch IN (develop, master)) AND (type IN (cron, push))) OR ((repo = jeking3/date_time) AND (branch = develop) AND (type = pull_request))
20
+ ((repo = percona/percona-server) AND (type = push)) OR ( branch =~ extraci )
21
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ ^inverted$)
22
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ exptraci)
23
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ inverted)
24
+ ((repo = percona/percona-server) AND (type = push)) OR branch =~ extraci
25
+ ((repo = percona/percona-server) AND (type = push)) OR branch =~ release
26
+ ((sender != 'Travis CI User') AND (branch = travisdeploy))
27
+ ((tag =~ \d\.\d\.\d) OR (branch = travis-stages)) AND (type != pull_request)
28
+ ((tag IS present) OR (branch = master)) AND (type != pull_request)
29
+ ((tag IS present) OR (branch = travis-stages)) AND (type != pull_request)
30
+ ((type != pull_request) AND (branch = master)) OR (tag =~ ^\d+\.\d+\.\d+$)
31
+ ((type = pull_request) and (branch =~ ^greenkeeper\/.*-.*$))
32
+ ((type = push) AND (branch = master)) OR type = pull_request
33
+ ((type IN (api, pull_request, push) AND branch IN (master)) OR (tag =~ ^\d+\.\d+\.\d+$))
34
+ ((type IN (api, push) AND branch IN (master)) OR (tag =~ ^\d+\.\d+\.\d+$))
35
+ (NOT (branch = master)) AND (type IN (push, pull-request))
36
+ (NOT (env(AUTHOR_NAME) =~ ^Travis$) AND (branch = travisdeploy))
37
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")) AND NOT (branch IN (master, dev))
38
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")) AND NOT branch IN (master, dev)
39
+ (NOT (tag ~= ^v[0-9]))
40
+ (NOT branch = develop) AND (type IN (push, pull_request))
41
+ (NOT branch = master)
42
+ (NOT branch = master) AND (type IN (push, pull_request))
43
+ (NOT branch = master) AND type IN (push)
44
+ (NOT branch = master) AND type IN (push, pull_request)
45
+ (NOT branch =~ ^develop/.*$) AND (tag IS blank)
46
+ (NOT branch IN (master, alpha, staging, prod)) AND (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = ""))
47
+ (NOT branch IN (master, alpha, staging, prod)) AND (env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank)
48
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
49
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
50
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "")
51
+ (NOT env(AUTHOR_NAME) =~ ^Travis AND (branch = development))
52
+ (NOT env(AUTHOR_NAME) =~ ^Travis AND (branch = travisdeploy))
53
+ (NOT env(AUTHOR_NAME) =~ ^Travis$ AND (branch = travisdeploy))
54
+ (NOT env(FRONTEND_FILES_CHANGED) = "") AND (NOT env(ANY_SERVICES_FILES_CHANGED) = "") AND (NOT env(SENSITIVE_FILES_CHANGED) = "")
55
+ (NOT env(FRONTEND_FILES_CHANGED) = "") OR (NOT env(ANY_SERVICES_FILES_CHANGED) = "") OR (NOT env(SENSITIVE_FILES_CHANGED) = "")
56
+ (NOT env(FRONTEND_FILES_CHANGED) IS blank OR env(ANY_SERVICES_FILES_CHANGED) IS blank OR env(SENSITIVE_FILES_CHANGED) IS blank)
57
+ (NOT fork) AND (type NOT IN (pull_request))
58
+ (NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request) AND NOT env(VSI_TAG) IS present
59
+ (NOT repo =~ ^vscode-icons OR branch != master OR type = pull_request) AND NOT env(VSI_TAG) IS present AND NOT tag IS present
60
+ (NOT tag IS present)
61
+ (NOT tag IS present) AND (NOT branch = master) AND (type = push)
62
+ (NOT tag IS present) OR (tag =~ ^*-linux$)
63
+ (NOT tag IS present) OR (tag ~= ^*-linux$)
64
+ (NOT tag IS present) OR (tag ~= ^*-linux)
65
+ (NOT tag ~= ^v[0-9])
66
+ (NOT tag ~= ^v[0-9]) AND (NOT tag =~ ^[0-9])
67
+ (NOT type = pull_request)
68
+ (NOT type = pull_request) AND (branch = master OR branch =~ ^[0-9]\.[0-9]$)
69
+ (NOT type = pull_request) AND (branch = master OR branch =~ ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
70
+ (NOT type = pull_request) AND (branch = master OR branch ~= ^[0-9]\.[0-9]$)
71
+ (NOT type = pull_request) AND (branch = master OR branch ~= ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
72
+ (NOT type = pull_request) AND (branch = master OR tag =~ env(SEMVER_REGEX))
73
+ (NOT type = pull_request) AND branch = master
74
+ (NOT type = pull_request) AND repo = camptocamp/c2cgeoportal
75
+ (NOT type = push) AND (branch = master OR tag =~ env(SEMVER_REGEX))
76
+ (NOT type IN (pull_request) AND (branch = travistag))
77
+ (NOT type IN (pull_request) OR (type in (pull_request) AND (head_branch == not_a_real_branch)))
78
+ (NOT type IN (pull_request)) AND (branch = master)
79
+ (NOT type IN (pull_request)) AND (branch = master) OR (tag IS present)
80
+ (NOT type IN (pull_request)) AND (repo = isuruf/staged-recipes)
81
+ (NOT type in (pull_request)) AND (branch = master OR tag =~ env(SEMVER_REGEX))
82
+ (branch != development AND branch != master) OR type = pull
83
+ (branch != master AND NOT tag IS present) OR type = pull_request OR NOT repo =~ ^vscode-icons
84
+ (branch != master AND branch != development)
85
+ (branch != master AND tag IS blank) OR (type IN (pull_request))
86
+ (branch != master OR branch != run-visual-test-with-cron-job) OR type = cron
87
+ (branch != master OR type = cron OR type = api)
88
+ (branch != master OR type = cron)
89
+ (branch != master)
90
+ (branch != run-visual-test-with-cron-job OR type = cron)
91
+ (branch = acc) AND (fork = false)
92
+ (branch = deploy) AND ((env(TRAVIS_PULL_REQUEST) = false) OR (env(TRAVIS_PULL_REQUEST) IS blank))
93
+ (branch = deploy) AND NOT(type = pull_request)
94
+ (branch = develop) AND (NOT (type = pull_request))
95
+ (branch = develop) AND (NOT pull_request)
96
+ (branch = develop) AND (NOT(type IN (push, pull_request)))
97
+ (branch = develop) AND (type != pull_request)
98
+ (branch = develop) AND type IN (push)
99
+ (branch = develop/travis) AND (tag IS blank)
100
+ (branch = development) AND (NOT (type IN (pull_request)))
101
+ (branch = development) OR (branch =~ ^release/)
102
+ (branch = development) OR (branch =~ ^release/) OR (tag is present)
103
+ (branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present)
104
+ (branch = master AND NOT type = pull_request) OR env(TRAVIS_TAG) IS NOT blank
105
+ (branch = master AND NOT type = pull_request) OR env(TRAVIS_TAG) IS present
106
+ (branch = master AND NOT type = pull_request) OR tag =~ ^v?([0-9]*)\.([0-9]*)\.([0-9]*)$
107
+ (branch = master AND NOT type = pull_request) OR tag =~ env(SEMVER_REGEX)
108
+ (branch = master AND NOT type = pull_request) OR tag IS NOT blank
109
+ (branch = master AND NOT type = pull_request) OR tag IS present
110
+ (branch = master AND env(RELEASE_ENVIRONMENT) NOT IN (production, staging, development))
111
+ (branch = master AND type = push)
112
+ (branch = master AND type = push) AND env(PEPA) IS NOT present
113
+ (branch = master AND type = push) AND env(PEPA) IS blank
114
+ (branch = master AND type = push) AND env(PEPE) IS blank
115
+ (branch = master AND type = push) OR (NOT type = push)
116
+ (branch = master AND type = push) OR (NOT type = push) OR (head_branch == feature/roger-ai)
117
+ (branch = master AND type = push) OR (NOT type = push) or (head_branch = weight-and-kubernetes)
118
+ (branch = master AND type = push) OR (branch = staging AND type = push) OR (NOT type = push)
119
+ (branch = master AND type = push) OR (head_branch = feature/k8s-travis)
120
+ (branch = master AND type = push) OR (head_branch = feature/roger-ai)
121
+ (branch = master AND type = push) OR (head_branch = travis-ci AND type = pull_request)
122
+ (branch = master AND type = push) OR (type = pull_request AND head_branch = travis-ci)
123
+ (branch = master AND type = push) OR (type = pull_request)
124
+ (branch = master AND type = push) OR type in ( pull_request, cron, api )
125
+ (branch = master AND type = push) or (head_branch = "feature/PLEO-2026/weights-and-scores")
126
+ (branch = master AND type = push) or (head_branch = "feature/PLEO-2026/weights-and-scores") or (branch = "feature/PLEO-2026/weights-and-scores" AND type = push)
127
+ (branch = master AND type = push) or (head_branch = travis-ci)
128
+ (branch = master AND type = push) or (head_branch = updateTrustlyClient)
129
+ (branch = master AND type = push) or (head_branch = weight-and-kubernetes)
130
+ (branch = master AND type IN (push, pull_request))
131
+ (branch = master OR branch = dev OR branch = breaking-up-builds) AND type = push
132
+ (branch = master OR branch = dev) AND type = push
133
+ (branch = master OR branch = development)
134
+ (branch = master OR branch = v3) AND (NOT type in (pull_request))
135
+ (branch = master OR branch = v4) AND (NOT type in (pull_request))
136
+ (branch = master OR branch =~ ^[0-9]\.[0-9]$)
137
+ (branch = master OR branch =~ ^release) AND type = pull_request
138
+ (branch = master OR branch ~= ^[0-9]\.[0-9]$)
139
+ (branch = master OR tag =~ env(SEMVER_REGEX)) AND NOT type = pull_request
140
+ (branch = master OR tag IS present)
141
+ (branch = master OR tag IS present) AND type = push
142
+ (branch = master)
143
+ (branch = master) AND (NOT (tag =~prod_))
144
+ (branch = master) AND (NOT (type = pull_request))
145
+ (branch = master) AND (NOT (type IN (api, pull_request)))
146
+ (branch = master) AND (NOT (type IN (api,pull_request)))
147
+ (branch = master) AND (NOT (type IN (pull_request)))
148
+ (branch = master) AND (NOT tag =~ ^\d+\.\d+\.\d+$)
149
+ (branch = master) AND (NOT(type IN (api, pull_request)))
150
+ (branch = master) AND (NOT(type IN (api,pull_request)))
151
+ (branch = master) AND (NOT(type IN (push ,pull_request)))
152
+ (branch = master) AND (NOT(type IN (push, pull_request)))
153
+ (branch = master) AND (NOT(type IN (push,pull_request)))
154
+ (branch = master) AND (env(TRAVIS_PULL_REQUEST) != false)
155
+ (branch = master) AND (env(TRAVIS_TAG) IS blank)
156
+ (branch = master) AND (pull_request IS false)
157
+ (branch = master) AND (tag =~ ^\d+\.\d+\.\d+$)
158
+ (branch = master) AND (tag IS blank)
159
+ (branch = master) AND (type != pull_request)
160
+ (branch = master) AND (type = push)
161
+ (branch = master) AND (type = push) AND (sender = pmario)
162
+ (branch = master) AND (type IN (push))
163
+ (branch = master) AND (type IN (push, api, cron))
164
+ (branch = master) AND NOT (type = pull_request)
165
+ (branch = master) AND env(TRAVIS_TAG) IS blank
166
+ (branch = master) AND type IN (push)
167
+ (branch = master) OR (branch = develop) OR (branch =~ ^release\/.*$) OR (branch =~ ^hotfix\/.*$) OR (branch =~ ^bugfix\/.*$) OR (branch =~ ^support\/.*$) OR (tag IS present)
168
+ (branch = master) OR (branch = develop) OR (branch =~ ^release\/.*$) OR (branch =~ ^hotfix\/.*$) OR (branch =~ ^bugfix\/.*$) OR (branch =~ ^support\/.*$) OR (tag IS present) OR (type IN (pull_request, api))
169
+ (branch = master) OR (branch =~ ^enterprise-)
170
+ (branch = master) OR (branch =~ ^release/) OR (tag IS present)
171
+ (branch = master) OR (branch =~ ^release/) OR (tag is present)
172
+ (branch = master) OR (branch =~ ^release\/.*) OR (tag IS present)
173
+ (branch = master) OR (branch =~ release/.*) OR (tag IS present)
174
+ (branch = master) OR (branch =~ release/.*) OR tag IS present
175
+ (branch = master) OR (tag =~ ^\d+\.\d+\.\d+$)
176
+ (branch = master) OR (tag IS present)
177
+ (branch = master) OR (type = pull_request)
178
+ (branch = master) and (type = pull_request)
179
+ (branch = release OR branch =~ ^release-(\d).(\d).(\d)$) AND type IN (push)
180
+ (branch = sign-it) AND (type = push) AND (sender = pmario)
181
+ (branch = stable) and (not type in (pull_request, cron))
182
+ (branch = stable) and (type = pull_request)
183
+ (branch = staging AND type = push)
184
+ (branch = task/TDB-57)
185
+ (branch = travis-publish) OR (tag =~ ^\d+\.\d+\.\d+$)
186
+ (branch = travis-stages)
187
+ (branch = travis-stages) AND (type != pull_request)
188
+ (branch =~ ^[0-9]\.[0-9]$)
189
+ (branch =~ ^develop/travis/.*$) OR (NOT branch =~ ^develop/.*$)
190
+ (branch =~ ^foo$ OR branch =~ ^foo-(\d).(\d).(\d)$)
191
+ (branch =~ ^inverted$) OR ((repo = percona/percona-server) AND (type = push))
192
+ (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$) AND type != pull_request
193
+ (branch =~ ^release$) OR ((repo = percona/percona-server) AND (type = pull_request))
194
+ (branch =~ ^release\/) OR (branch = develop) OR tag IS present
195
+ (branch =~ exptraci) OR (repo = percona/percona-server) AND (type = push)
196
+ (branch =~ extraci OR repo = percona/percona-server) AND (type = push)
197
+ (branch =~ inverted) OR ((repo = percona/percona-server) AND (type = pull_request))
198
+ (branch =~ pulumi/.*)
199
+ (branch =~ release) OR ((repo = percona/percona-server) AND (type = pull_request))
200
+ (branch IN (develop, master)) AND (type IN (cron, push))
201
+ (branch IN (develop, master)) AND (type NOT IN (pull_request))
202
+ (branch IN (master)) AND (tag =~ ^v OR (type in (push, cron)))
203
+ (branch IN (master)) AND (type IN (push, pull_request))
204
+ (branch IN (master, Staging, Stable) AND type = push) OR (type = pull_request)
205
+ (branch IN (master, bulk)) OR (type = pull_request) OR (fork = true)
206
+ (branch IN (master, bulk)) OR (type = pull_request) OR (repo != bioconda/bioconda-recipes)
207
+ (branch IN (master, staging) AND type = push) OR type in ( pull_request, cron )
208
+ (branch in (staging,travisk8s) AND type = push)
209
+ (env(APP_CARRIER) = ANTHEM_BLUE_CROSS) AND (branch = develop)
210
+ (env(ASD) IS blank) OR (type IN (pull_request))
211
+ (env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != "" OR env(TRAVIS_CONFIG_CHANGED) != "")
212
+ (env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != "" OR env(TRAVIS_CONFIG_CHANGED) != "") AND (NOT branch IN(master, alpha, staging, prod))
213
+ (env(GH_TOKEN) IS blank) OR (type IN (pull_request))
214
+ (env(TRAVIS_PULL_REQUEST_BRANCH) IS blank) AND (branch = master OR tag =~ env(SEMVER_REGEX))
215
+ (env(TRAVIS_TAG) IS present) AND (NOT (tag =~ \btest\b))
216
+ (fork = false) AND (NOT (type IN (pull_request)))
217
+ (fork IN (false)) AND (NOT (type IN (pull_request)))
218
+ (fork IN (true)) OR (type IN (pull_request))
219
+ (repo != conda-forge/staged-recipes) OR (type IN (pull_request))
220
+ (repo != isuruf/staged-recipes) OR (type IN (pull_request))
221
+ (repo != percona/percona-server)
222
+ (repo != percona/percona-server) OR ((repo = percona/percona-server) AND (type = push))
223
+ (repo = isuruf/staged-recipes) AND (type IN (pull_request))
224
+ (repo = okramlabs/okramlabs.github.src) AND (type = push) AND (branch = master) AND (NOT tag IS present)
225
+ (repo = okramlabs/okramlabs.github.src) AND (type = push) AND (tag IS present)
226
+ (tag =~ \d\.\d\.\d)
227
+ (tag =~ \d\.\d\.\d) AND (branch = travis-stages) AND (type != pull_request)
228
+ (tag =~ ^*-macos$)
229
+ (tag =~ ^prod_)
230
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/js-kitchen-sync)
231
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/json2array)
232
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/new-ball)
233
+ (tag =~ ^v) AND (branch = testing)
234
+ (tag =~ ^v1)
235
+ (tag =~ ^v1) AND (branch = master) AND (NOT (type IN (push, pull_request)))
236
+ (tag =~ ^v1) AND (branch = master) AND (NOT(type IN (push, pull_request)))
237
+ (tag =~ ^v1) AND (branch = testing)
238
+ (tag =~ ^v1) AND (branch = testing) AND (type IN (push))
239
+ (tag =~ ^v\d)
240
+ (tag IS present)
241
+ (tag IS present) AND (type != pull_request)
242
+ (tag IS present) OR (branch = master)
243
+ (tag IS present) OR (tag ~= ^*-linux)
244
+ (tag ~= ^*-macos$)
245
+ (tag ~= ^*-macos)
246
+ (tag ~= ^v[0-9])
247
+ (tag) AND (branch = testing) AND (type IN (push))
248
+ (type != cron)
249
+ (type != cron) and (branch != ^greenkeeper\/.*$)
250
+ (type != cron) and (branch = master)
251
+ (type != cron) and (branch =~ ^greenkeeper\/.*$)
252
+ (type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$))
253
+ (type != pull_request AND branch IN (master, develop)) OR branch = working
254
+ (type != pull_request)
255
+ (type != pull_request) && (branch =~ ^release/.*)
256
+ (type != pull_request) && (branch =~ ^release/major/.*)
257
+ (type != pull_request) && (branch =~ ^release/minor/.*)
258
+ (type != pull_request) && (branch =~ ^release/patch/.*)
259
+ (type != pull_request) AND (NOT tag =~ ^v\d+\.\d+\.\d+$)
260
+ (type != pull_request) AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$)
261
+ (type != pull_request) AND (branch =~ ^release/.*)
262
+ (type != pull_request) AND (branch =~ ^release/major/.*)
263
+ (type != pull_request) AND (branch =~ ^release/minor/.*)
264
+ (type != pull_request) AND (branch =~ ^release/patch/.*)
265
+ (type != pull_request) AND (head_branch =~ ^release/.* OR branch =~ ^release/.*)
266
+ (type != pull_request) AND (head_branch =~ ^release/major/.* OR branch =~ ^release/major/.*)
267
+ (type != pull_request) AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.*)
268
+ (type != pull_request) AND (head_branch =~ ^release/patch/.* OR branch =~ ^release/patch/.*)
269
+ (type != pull_request) OR (branch =~ ^[\w-.]*__TEST_HDFS__$)
270
+ (type != pull_request) OR (branch =~ __TEST_HDFS__)
271
+ (type != pull_request) OR (head_branch == not_a_real_branch)
272
+ (type != pull_request) OR (head_branch =~ __TEST_HDFS__)
273
+ (type != pull_request) OR (head_branch =~ not-the-branch-name)
274
+ (type != pull_request) OR (type = pull_request AND branch = master)
275
+ (type = api OR type = push) AND branch = master
276
+ (type = cron) AND (branch = master)
277
+ (type = cron) OR (tag IS present)
278
+ (type = pr or branch = master) and (not branch =~ ^docs)
279
+ (type = pr or branch = master) and NOT branch =~ ^docs
280
+ (type = pull_request AND branch = staging) OR (type = push AND branch IN (staging, production))
281
+ (type = pull_request)
282
+ (type = pull_request) OR ((type = push) AND (NOT branch = master))
283
+ (type = pull_request) OR (branch = develop) OR ( (branch = master) AND (tag IS present) )
284
+ (type = pull_request) OR (branch = travis-conditionals-bug)
285
+ (type = pull_request) OR (tag IS present)
286
+ (type = pull_request) OR (tag IS present) OR (branch = master)
287
+ (type = pull_request) and (branch =~ ^greenkeeper\/.*-.*$)
288
+ (type = push AND NOT (branch = develop)) OR (type = cron)
289
+ (type = push)
290
+ (type = push) AND ((branch IN (master, bulk)) OR (fork = true))
291
+ (type = push) AND ((branch IN (master, bulk)) OR (repo != bioconda/bioconda-recipes))
292
+ (type = push) AND ((branch IN (master, bulk)) OR (repo != genouest/conda-training))
293
+ (type = push) AND (NOT branch = master)
294
+ (type = push) AND (branch = master)
295
+ (type = push) AND (branch =~ master)
296
+ (type = push) AND (env(SONAR_TOKEN) IS present)
297
+ (type = push) AND (repo = sass/dart-sass) AND (tag =~ ^\d+\.\d+\.\d+([+-].*)?$)
298
+ (type = push) AND (tag =~ /^v[1-9].[0-9].[0-9]/)
299
+ (type = push) AND (tag =~ ^v1) AND (branch = testing)
300
+ (type = push) AND (tag =~ ^v[0-9].[0-9].[0-9]$)
301
+ (type = push) AND (tag =~ ^v[0-9].[0-9].[0-9]-)
302
+ (type = push) AND (tag IS blank)
303
+ (type == push)
304
+ (type IN (api)) OR (tag = v1.0.0-ci-test-2)
305
+ (type IN (api, pull_request, push) AND branch = master) OR (tag =~ ^.+$)
306
+ (type IN (api, push) AND branch = master)
307
+ (type IN (api, push) AND branch = master) OR (tag =~ ^.+$)
308
+ (type IN (cron, api)) OR ((tag IS present) AND (tag =~ ^v))
309
+ (type IN (cron, api)) OR (tag =~ ^v)
310
+ (type IN (cron, api)) OR (tag =~ ^v?([0-9]+)\.([0-9]+)\.([0-9]+)(?:(?:\-|\+)([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)){0,2}$)
311
+ (type IN (cron, api)) OR (tag IS present)
312
+ (type IN (cron, pull_request)) OR (tag IS present)
313
+ (type IN (pull_request)) AND (branch =~ ^greenkeeper\/.*$)
314
+ (type IN (pull_request)) OR ((type IN (push)) AND branch != develop)
315
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) = 'yes')
316
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) = yes)
317
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) == 'yes')
318
+ (type IN (pull_request)) OR (env(LAST_COMMIT_MESSAGE) =~ ^toto$)
319
+ (type IN (pull_request)) OR (env(TRAVIS_COMMIT_MESSAGE) =~ ^bar$)
320
+ (type IN (pull_request)) OR (env(TRAVIS_COMMIT_MESSAGE) =~ ^toto$)
321
+ (type IN (pull_request)) OR tag IS present
322
+ (type IN (push, api)) AND (repo = sass/dart-sass) AND tag =~ ^\d+\.\d+\.\d+([+-].*)?$
323
+ (type IN (push, api)) AND (tag =~ ^(0|[1-9]\d*)(?:\.(0|[1-9]\d*))?(?:\.(0|[1-9]\d*))?(?:-([\w.-]+))?(?:\+([\w.-]+))?$)
324
+ (type IN (push, pull_request))
325
+ (type in (pull_request)) and (branch =~ ^greenkeeper\/.*$)
326
+ 0
327
+ 0 == 1
328
+ 1
329
+ 1=1
330
+ 1=2
331
+ JOB_TYPE in (app)
332
+ JOB_TYPE in (front_dashboard)
333
+ JOB_TYPE in (front_survey)
334
+ NOT ( env(VERSION) =~ /^pypy/ )
335
+ NOT ( env(VERSION) =~ ^pypy )
336
+ NOT (((env(FRONTEND_FILES_CHANGED) IS blank) AND (env(ANY_SERVICES_FILES_CHANGED) IS blank)) AND (branch IN (master, alpha, staging, prod)))
337
+ NOT ((branch = TestSkipPrBuilds$) AND (type = pull_request))
338
+ NOT ((branch = ^.*TestSkipPrBuilds$) AND (type = pull_request))
339
+ NOT ((branch = ^greenkeeper/.*$) AND (type = pull_request))
340
+ NOT ((branch =~ ^.*TestSkipPrBuilds$) AND (type = pull_request))
341
+ NOT ((env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(SENSITIVE_FILES_CHANGED) IS blank) AND branch IN (master, alpha, staging, prod))
342
+ NOT ((env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank) AND branch IN (master, alpha, staging, prod))
343
+ NOT (branch = imageproxy)
344
+ NOT (branch = master)
345
+ NOT (branch =~ TestSkipPrBuilds)
346
+ NOT (branch =~ ^bk-.*$)
347
+ NOT (branch =~ ^foobar$)
348
+ NOT (branch =~ imageproxy)
349
+ NOT (branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
350
+ NOT (env(FEEDSTOCKS) IN (yes))
351
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "" AND branch IN (master, alpha, staging, prod))
352
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
353
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
354
+ NOT (env(SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
355
+ NOT (env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXCLUSION))
356
+ NOT (tag IS present)
357
+ NOT (tag ~= ^v[0-9] OR tag =~ ^[0-9])
358
+ NOT (type = cron)
359
+ NOT (type = pull_request)
360
+ NOT (type = pull_request) AND branch = master
361
+ NOT (type = push AND branch = production)
362
+ NOT (type IN (pull_request))
363
+ NOT (type IN (pull_request, api)) AND branch IN (master, develop)
364
+ NOT (type IN (pull_request, cron)) AND branch = master
365
+ NOT branch = master
366
+ NOT branch = master AND type IN (push, pull-request)
367
+ NOT branch = master OR (type = pull_request)
368
+ NOT branch =~ TestSkipPrBuilds OR type = push
369
+ NOT branch =~ ^WIP.*$
370
+ NOT branch =~ ^develop/.*$
371
+ NOT branch =~ ^develop/.*$ OR branch =~ ^develop/travis/.*$
372
+ NOT branch =~ ^staging*$ AND type IN (push, pull_request)
373
+ NOT branch =~ ^staging.*$ AND type IN (push, pull_request)
374
+ NOT branch =~ coverage
375
+ NOT branch IN (master, alpha, staging, prod)
376
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "" OR NOT env(ANY_SERVICES_FILES_CHANGED) = "" OR NOT env(SENSITIVE_FILES_CHANGED) = "")
377
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "" OR env(ANY_SERVICES_FILES_CHANGED) = "" OR env(SENSITIVE_FILES_CHANGED) = "")
378
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "")
379
+ NOT branch IN (master, alpha, staging, prod) AND (env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank)
380
+ NOT branch IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
381
+ NOT branch IN (master, alpha, staging, prod) AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank
382
+ NOT branch IN (master, alpha, staging, prod) AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank AND env(SENSITIVE_FILES_CHANGED) IS blank
383
+ NOT branch IN (master, develop)
384
+ NOT branch IN (master, staging, prod)
385
+ NOT branch ~= imageproxy
386
+ NOT env(COMMIT_MSG) =~ backend
387
+ NOT env(COMMIT_MSG) =~ frontend
388
+ NOT env(FRONTEND_FILES_CHANGED) = ""
389
+ NOT env(GH_TOKEN)
390
+ NOT env(TAG) IS present
391
+ NOT env(TARGET) IS present
392
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ "\[backend\]"
393
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ [backend]
394
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ \[backend\]
395
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ backend
396
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(BACKEND_EXLUSION)
397
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXCLUSION)
398
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXLUSION)
399
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ frontend
400
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ tuvwxy
401
+ NOT env(VERSION) =~ ^pypy
402
+ NOT fork
403
+ NOT fork = true AND NOT type = pull_request
404
+ NOT repo =~ ^JimiC OR (branch != master AND NOT tag IS present) OR type = pull_request OR NOT env(TARGET) IS present
405
+ NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request
406
+ NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request OR env(TARGET) != vsi
407
+ NOT tag = "stable"
408
+ NOT tag = /.*/
409
+ NOT tag = stable
410
+ NOT tag =~ +d2$ AND tag IS present
411
+ NOT tag =~ +d2^
412
+ NOT tag =~ +d2^ AND tag IS present
413
+ NOT tag =~ \+d2$
414
+ NOT tag =~ ^.*\+d2^
415
+ NOT tag =~ ^v([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
416
+ NOT tag =~ ^v1
417
+ NOT tag =~ ^v\d+\.\d+\.\d+$
418
+ NOT tag =~ d2$
419
+ NOT tag =~ d2^
420
+ NOT tag =~ d2^ AND tag IS present
421
+ NOT tag IS present
422
+ NOT tag IS present AND type IN (push)
423
+ NOT tag IS present OR tag =~ ^*-linux$
424
+ NOT type = pull_request
425
+ NOT type = pull_request AND (branch = master OR branch ~= ^[0-9]\.[0-9]$)
426
+ NOT type = pull_request AND (branch = master OR branch ~= ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
427
+ NOT type = pull_request AND branch = master
428
+ NOT type = pull_request AND branch = master AND repo = camptocamp/c2cgeoportal
429
+ NOT type = pull_request AND repo = camptocamp/c2cgeoportal
430
+ NOT type = push
431
+ NOT type = tag
432
+ NOT type IN (cron)
433
+ NOT type IN (pull_request)
434
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^[0-9])
435
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^v[0-9])
436
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^v[1-9])
437
+ NOT type IN (pull_request) AND branch IN (dev)
438
+ NOT type IN (pull_request) AND branch IN (master)
439
+ NOT type IN (pull_request) AND branch IN (master, dev)
440
+ NOT type IN (push, cron)
441
+ NOT type in (pull_request)
442
+ NOT(type = pull_request)
443
+ REMOTE_DIR = olm_client
444
+ TRAVIS_EVENT_TYPE = cron
445
+ TRAVIS_PULL_REQUEST
446
+ TRAVIS_PULL_REQUEST != "false"
447
+ TRAVIS_PULL_REQUEST != false
448
+ TRAVIS_PULL_REQUEST = "false"
449
+ TRAVIS_PULL_REQUEST = false
450
+ TRAVIS_PULL_REQUEST IS false
451
+ TRAVIS_PULL_REQUEST IS present
452
+ TRAVIS_TAG ~= .+
453
+ after_success:
454
+ ansible_changes = 0
455
+ brahch = develop
456
+ branch != "develop" OR type IN (pull_request, api, cron)
457
+ branch != 'testflight'
458
+ branch != *release
459
+ branch != baked
460
+ branch != coverity
461
+ branch != coverity-scan
462
+ branch != coverity_scan
463
+ branch != docs
464
+ branch != gh-pages
465
+ branch != l10n-crowdin
466
+ branch != l10n-crowdin AND tag != "-fdroid$"
467
+ branch != l10n-crowdin AND tag != "-fdroid$" AND tag IS present
468
+ branch != master
469
+ branch != master AND NOT tag IS present
470
+ branch != master AND type != pull_request
471
+ branch != master AND type IN (push) AND fork = false
472
+ branch != master AND type IN (push, api, cron) AND fork = false
473
+ branch != master AND type IN (push, pull_request)
474
+ branch != master OR NOT type IN (push, cron)
475
+ branch != master OR tag =~ ^.*$
476
+ branch != master OR type != push
477
+ branch != master OR type = cron
478
+ branch != master OR type = pull_request
479
+ branch != master OR type IN (pull_request)
480
+ branch != master and type != pull_request
481
+ branch != production
482
+ branch != release
483
+ branch != rival_stage
484
+ branch != rival_stage and type != pull_request
485
+ branch != run-visual-test-with-cron-job OR type = cron
486
+ branch != scan-coverity
487
+ branch != staging OR type != push
488
+ branch !~ TestSkipPrBuilds
489
+ branch = "feature/base"
490
+ branch = "master"
491
+ branch = 'master'
492
+ branch = 'speed-up-travis' OR branch = 'staging' OR tag IS present
493
+ branch = 'staging' OR tag IS present
494
+ branch = 'staging' OR tag IS present OR branch = 'profiles-update'
495
+ branch = 10.0
496
+ branch = 2.0
497
+ branch = 2.x
498
+ branch = 32-travis-ci
499
+ branch = 32-travis-ci AND (NOT type = pull_request)
500
+ branch = 45861-step-4-5-6-7-upload-test-result-and-remove-toolstate-toml
501
+ branch = 45861-step-4-5-6-7-upload-test-result-and-remove-toolstate-toml AND type = push
502
+ branch = QA_TEST_TRAVIS OR branch = TEST_TRAVIS
503
+ branch = TEST_TRAVIS
504
+ branch = TESTci
505
+ branch = TESTstable and repo = diego-plan9/qiskit-sdk-py
506
+ branch = acc
507
+ branch = acc AND fork = false
508
+ branch = adv-travis-config
509
+ branch = atom/release
510
+ branch = auto
511
+ branch = auto OR branch = debug-48866
512
+ branch = auto OR branch = try
513
+ branch = auto OR type = pull_request
514
+ branch = auto-deployment
515
+ branch = automate-deployments
516
+ branch = autoupdate
517
+ branch = baked
518
+ branch = base
519
+ branch = beta
520
+ branch = beta AND type = push
521
+ branch = build-on-travis-test-on-dev
522
+ branch = build-stages
523
+ branch = build_and_test
524
+ branch = build_image
525
+ branch = buildartifacts
526
+ branch = builds-docker-backport-0.4
527
+ branch = cd
528
+ branch = ci_test
529
+ branch = ci_test OR branch = cooverity_scan
530
+ branch = compose
531
+ branch = coverity
532
+ branch = coverity-scan
533
+ branch = coverity_scan
534
+ branch = crush OR env(JS_CHANGED) IS present
535
+ branch = crush OR env(PY_CHANGED) IS present
536
+ branch = dataDependency OR tag IS present
537
+ branch = dataDependencySync OR tag IS present
538
+ branch = deploy
539
+ branch = deployment/production OR branch = deployment/staging OR branch = deployment/development OR type = pull_request
540
+ branch = dev
541
+ branch = dev AND type != pull_request
542
+ branch = dev and type = push
543
+ branch = dev/test-deploy AND type = push
544
+ branch = dev_package
545
+ branch = devel
546
+ branch = devel OR branch =~ ^develmock/
547
+ branch = devel OR branch ~= ^develmock/
548
+ branch = develop
549
+ branch = develop AND (type IN (push))
550
+ branch = develop AND NOT type = pull_request
551
+ branch = develop AND tag =~ *
552
+ branch = develop AND tag =~ /*/
553
+ branch = develop AND tag =~ \.*\
554
+ branch = develop AND tag =~ \^.*\
555
+ branch = develop AND tag =~ \^[0-9].*\
556
+ branch = develop AND type != pull_request
557
+ branch = develop AND type = push
558
+ branch = develop AND type == cron
559
+ branch = develop AND type IN (pull_request)
560
+ branch = develop AND type IN (push)
561
+ branch = develop AND type IN (push) AND tag =~ *
562
+ branch = develop AND type IN (push, api)
563
+ branch = develop AND type IN (push, pull_request)
564
+ branch = develop OR branch =~ ^greenkeeper
565
+ branch = develop OR tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$
566
+ branch = develop and type = push
567
+ branch = develop/hardening
568
+ branch = develop/pipes-travis
569
+ branch = develop/travis
570
+ branch = development
571
+ branch = development AND (NOT type = pull_request)
572
+ branch = development AND type = push
573
+ branch = development OR type = pull_request
574
+ branch = docker-branch
575
+ branch = docker-builds
576
+ branch = docker-builds || branch = master || branch = code-freeze-2017
577
+ branch = docker-hub-images
578
+ branch = docker-tags
579
+ branch = env(DEPLOY_BRANCH)
580
+ branch = envs
581
+ branch = es-ecr-lifecycle-cleanup
582
+ branch = experimental
583
+ branch = experimental AND type = push
584
+ branch = faster_ci
585
+ branch = feat-ci
586
+ branch = feature/argparse-docs
587
+ branch = feature/base AND type IN (push)
588
+ branch = feature/ci-cleanup AND type != pull_request
589
+ branch = feature/ci-publishing
590
+ branch = feature/code-deploy AND type = push
591
+ branch = feature/github-pages
592
+ branch = feature/new_design
593
+ branch = feature/publish-artifactory
594
+ branch = feature/travis
595
+ branch = feature/travis-ci
596
+ branch = feature/travis-parallels-test
597
+ branch = fix_travis_osx AND type != pull_request
598
+ branch = gc/dynamic_knapsack_report
599
+ branch = gc/updated_knapsack_report
600
+ branch = hotfix/v0.2.1
601
+ branch = http-connection
602
+ branch = ignore-this-branch
603
+ branch = integration AND type = push
604
+ branch = llvm-6-test
605
+ branch = local_docker_build
606
+ branch = master
607
+ branch = master AND type IN (push)
608
+ branch = master && type != pull_request
609
+ branch = master && type != pull_request && type != tag
610
+ branch = master AND (NOT type = pull_request)
611
+ branch = master AND (NOT type IN (pull_request))
612
+ branch = master AND (env(rebuild-android) = true OR tag = Rebuild android)
613
+ branch = master AND (type IN (pull_request))
614
+ branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present
615
+ branch = master AND NOT env(TRAVIS_PULL_REQUEST)
616
+ branch = master AND NOT type = pull_request
617
+ branch = master AND NOT type = pull_request AND NOT type = cron
618
+ branch = master AND NOT type IN (cron)
619
+ branch = master AND NOT type IN (pull_request)
620
+ branch = master AND NOT type IN (pull_request, cron, api)
621
+ branch = master AND NOT(type IN (push,pull_request))
622
+ branch = master AND env(TRAVIS_PULL_REQUEST_BRANCH) IS blank AND env(TRAVIS_TAG) IS blank
623
+ branch = master AND env(TRAVIS_TAG) IS blank
624
+ branch = master AND pull_request = false
625
+ branch = master AND pull_request IS false
626
+ branch = master AND repo = Shopify/ingress
627
+ branch = master AND repo = camptocamp/ngeo
628
+ branch = master AND repo = yahoo/navi
629
+ branch = master AND repo = yahoo/navi AND type = push
630
+ branch = master AND sender != elgalubot AND tag IS blank
631
+ branch = master AND sender != elgalubot AND tag IS blank AND type != pull_request
632
+ branch = master AND tag !~ ^v
633
+ branch = master AND tag IS blank
634
+ branch = master AND tag IS present AND env(REBUILD_ANDROID) IS true
635
+ branch = master AND tag IS present AND env(REBUILD_IOS) IS true
636
+ branch = master AND tag is blank
637
+ branch = master AND tag is blank AND fork is false AND repo = head_repo AND type != pull_request
638
+ branch = master AND tag is blank AND fork is false AND type != pull_request
639
+ branch = master AND tag is blank AND fork is false AND type != pull_request AND repo = head_repo
640
+ branch = master AND type != pull_request
641
+ branch = master AND type != pull_request AND NOT tag IS present AND NOT env(TARGET) IS present
642
+ branch = master AND type != pull_request AND type != cron
643
+ branch = master AND type = api AND env(TRAVIS_API_TYPE) IS blank
644
+ branch = master AND type = cron
645
+ branch = master AND type = pull_request
646
+ branch = master AND type = push
647
+ branch = master AND type = push AND env(PEPA) IS blank
648
+ branch = master AND type = push AND fork = false
649
+ branch = master AND type = push AND platform = Linux
650
+ branch = master AND type = push AND repo = plus3it/spel
651
+ branch = master AND type = push OR type = pull_request
652
+ branch = master AND type == cron
653
+ branch = master AND type IN (cron)
654
+ branch = master AND type IN (cron, api)
655
+ branch = master AND type IN (pull_request)
656
+ branch = master AND type IN (push)
657
+ branch = master AND type IN (push) AND fork = false
658
+ branch = master AND type IN (push) AND repo != bootique/bootique
659
+ branch = master AND type IN (push) AND repo = bootique/bootique
660
+ branch = master AND type IN (push) AND repo = bootique/bootique-bom
661
+ branch = master AND type IN (push) AND repo = bootique/bootique-cayenne
662
+ branch = master AND type IN (push) AND repo = bootique/bootique-cxf
663
+ branch = master AND type IN (push) AND repo = bootique/bootique-di
664
+ branch = master AND type IN (push) AND repo = bootique/bootique-flyway
665
+ branch = master AND type IN (push) AND repo = bootique/bootique-jcache
666
+ branch = master AND type IN (push) AND repo = bootique/bootique-jdbc
667
+ branch = master AND type IN (push) AND repo = bootique/bootique-jersey
668
+ branch = master AND type IN (push) AND repo = bootique/bootique-jersey-client
669
+ branch = master AND type IN (push) AND repo = bootique/bootique-jetty
670
+ branch = master AND type IN (push) AND repo = bootique/bootique-job
671
+ branch = master AND type IN (push) AND repo = bootique/bootique-jooq
672
+ branch = master AND type IN (push) AND repo = bootique/bootique-kotlin
673
+ branch = master AND type IN (push) AND repo = bootique/bootique-linkmove
674
+ branch = master AND type IN (push) AND repo = bootique/bootique-linkrest
675
+ branch = master AND type IN (push) AND repo = bootique/bootique-liquibase
676
+ branch = master AND type IN (push) AND repo = bootique/bootique-metrics
677
+ branch = master AND type IN (push) AND repo = bootique/bootique-mvc
678
+ branch = master AND type IN (push) AND repo = bootique/bootique-shiro
679
+ branch = master AND type IN (push) AND repo = bootique/bootique-swagger
680
+ branch = master AND type IN (push) AND repo = bootique/bootique-tapestry
681
+ branch = master AND type IN (push) AND repo = bootique/bootique-undertow
682
+ branch = master AND type IN (push, api, cron) AND fork = false
683
+ branch = master AND type IN (push, cron)
684
+ branch = master AND type NOT IN (pull_request)
685
+ branch = master AND type NOT IN (pull_request, cron)
686
+ branch = master AND type NOT IN (pull_request, cron, api)
687
+ branch = master AND type NOT IN (push, pull_request)
688
+ branch = master AND type in (push)
689
+ branch = master OR branch = develop
690
+ branch = master OR (branch = develop AND env(TRAVIS_COMMIT_MESSAGE) =~ ^[stagingdeploy]$)
691
+ branch = master OR RUN_QA IS present OR branch = visual-testing
692
+ branch = master OR branch = closureCircularity OR branch =~ ^release/ OR tag IS present
693
+ branch = master OR branch = develop
694
+ branch = master OR branch = develop OR branch = hotfix
695
+ branch = master OR branch = develop OR branch =~ ^release\/.*$ OR branch =~ ^hotfix\/.*$ OR branch =~ ^bugfix\/.*$ OR branch =~ ^support\/.*$ OR tag IS present OR type IN (pull_request, api)
696
+ branch = master OR branch = lukehoban/grpc1.10 OR branch =~ ^release/ OR tag IS present
697
+ branch = master OR branch = moduleSerialization OR branch =~ ^release/ OR tag IS present
698
+ branch = master OR branch = moduleSerialization2 OR branch =~ ^release/ OR tag IS present
699
+ branch = master OR branch = noCaptureBit OR branch =~ ^release/ OR tag IS present
700
+ branch = master OR branch = outputSerialization OR branch =~ ^release/ OR tag IS present
701
+ branch = master OR branch = prod
702
+ branch = master OR branch = serializationWork OR branch =~ ^release/ OR tag IS present
703
+ branch = master OR branch = serializeLess OR branch =~ ^release/ OR tag IS present
704
+ branch = master OR branch = splitFiles OR branch =~ ^release/ OR tag IS present
705
+ branch = master OR branch = v3
706
+ branch = master OR branch =~ ^enterprise-.*
707
+ branch = master OR branch =~ ^mastermock/
708
+ branch = master OR branch =~ ^release/ OR tag IS present
709
+ branch = master OR branch =~ backport/.*
710
+ branch = master OR branch ~= ^[0-9]\.[0-9]$
711
+ branch = master OR env(RUN_QA) IS present
712
+ branch = master OR env(RUN_QA) IS present OR branch = fix/search-refresh
713
+ branch = master OR env(RUN_QA) IS present OR branch = improve-content-spacing
714
+ branch = master OR env(RUN_QA) IS present OR branch = improve-percy-screenshots
715
+ branch = master OR env(RUN_QA) IS present OR branch = visual-testing
716
+ branch = master OR tag =~ $SEMVER_REGEX
717
+ branch = master OR tag =~ ^release-
718
+ branch = master OR tag =~ ^v
719
+ branch = master OR tag =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$
720
+ branch = master OR tag =~ ^v\d+\.\d+$
721
+ branch = master OR tag =~ env(SEMVER_REGEX)
722
+ branch = master OR tag IS present
723
+ branch = master OR tag IS present OR branch = fix-docker
724
+ branch = master OR type != pull_request
725
+ branch = master OR type = pull_request
726
+ branch = master OR type = pull_request OR branch =~ ^rc_.*
727
+ branch = master OR type == pull_request
728
+ branch = master OR type IN (pull_request)
729
+ branch = master OR type IN (pull_request) AND env(TRAVIS_SECURE_ENV_VARS) = true
730
+ branch = master and (not type = pull_request)
731
+ branch = master and not (type = pull_request)
732
+ branch = master and repo = danielsuo/brainiak
733
+ branch = master and type != "pull_request"
734
+ branch = master and type != pull-request
735
+ branch = master and type != pull_request
736
+ branch = master and type = pull_request
737
+ branch = master and type = push
738
+ branch = master or branch = devel
739
+ branch = master or branch = develop
740
+ branch = master or type = pull-request
741
+ branch = master || branch = code-freeze-2017
742
+ branch = master || branch = emergent_qa
743
+ branch = master-test
744
+ branch = migration
745
+ branch = more-osx-cores
746
+ branch = move-AMI-build
747
+ branch = netbsd-i386-build
748
+ branch = oldstable OR tag IS present
749
+ branch = optimize-docker
750
+ branch = optimize-docker AND NOT type = pull_request
751
+ branch = overlayArray OR tag IS present
752
+ branch = pending AND type != pull_request AND tag IS blank
753
+ branch = persistance_integration
754
+ branch = phil-work
755
+ branch = pre-release
756
+ branch = prepare-release
757
+ branch = prerelease
758
+ branch = preview-nanno
759
+ branch = prod
760
+ branch = production
761
+ branch = production AND type != pull_request
762
+ branch = production AND type != pull_requst
763
+ branch = production AND type = push
764
+ branch = python3
765
+ branch = qa
766
+ branch = qa_branch-test
767
+ branch = rancher-prep
768
+ branch = rancher-prep AND type IN (push)
769
+ branch = rancher-updates AND type IN (push)
770
+ branch = ravens
771
+ branch = rc
772
+ branch = react/develop
773
+ branch = react/production
774
+ branch = rec-cluster AND type != pull_request
775
+ branch = release
776
+ branch = release OR branch = master OR branch =~ ^release-(\d).(\d).(\d)$
777
+ branch = release-staging AND type = push
778
+ branch = release-temp
779
+ branch = release-tests AND type = push
780
+ branch = release/staging
781
+ branch = removeComputed OR tag IS present
782
+ branch = rhialto
783
+ branch = rival_stage
784
+ branch = rollbackTest OR tag IS present
785
+ branch = ruby
786
+ branch = sandbox
787
+ branch = secondary
788
+ branch = semantic-release AND type != pull_request
789
+ branch = simpler-travis-tests
790
+ branch = site-auto-publish AND type IN (push)
791
+ branch = stable
792
+ branch = stable OR branch = cooverity_scan
793
+ branch = stable and repo = QISKit/qiskit-sdk-py
794
+ branch = stable10 OR branch =~ ^hotfix-.*$ OR type = cron
795
+ branch = stable10 OR type = cron
796
+ branch = stage
797
+ branch = staging
798
+ branch = staging AND (NOT type IN (pull_request))
799
+ branch = staging AND type = push
800
+ branch = staging AND type IN (push)
801
+ branch = staging OR branch = trying OR branch =~ /^v\d+/
802
+ branch = staging OR type = pull_request
803
+ branch = staging-new-signup
804
+ branch = switch-to-go-1.9
805
+ branch = task/ASI-93-auto-update-campaign-performance-summary-for-periscope
806
+ branch = task/ASI-99-jar-and-dag-auto-deploy-to-production
807
+ branch = test
808
+ branch = test-1
809
+ branch = test-deploy
810
+ branch = test/travis-deploy
811
+ branch = test/travis-deploy-full
812
+ branch = testing OR branch = staging OR type = pull_request
813
+ branch = tmp-dev
814
+ branch = topic/releases
815
+ branch = translation-tx-test AND type = push
816
+ branch = travis
817
+ branch = travis and type = push
818
+ branch = travis-ci
819
+ branch = travis-conditional
820
+ branch = travis-tests
821
+ branch = travis-yml-cleanup
822
+ branch = travis_deployment
823
+ branch = travis_integration
824
+ branch = travis_matrix
825
+ branch = travisdeploy
826
+ branch = travisize
827
+ branch = try
828
+ branch = try AND type = push
829
+ branch = try OR branch = auto
830
+ branch = try OR branch = llvm-6-test
831
+ branch = try-removing-stages AND type = push
832
+ branch = v2
833
+ branch = working
834
+ branch == appcenter-deploy
835
+ branch == custom_env_forwarder
836
+ branch == custom_env_forwarder AND type = push
837
+ branch == master
838
+ branch == master AND branch != master
839
+ branch == master AND type = push
840
+ branch == master AND type IN (push, api, cron)
841
+ branch == rival_stage
842
+ branch =~ /^(develop|master|release\/.*)$/
843
+ branch =~ /^(develop|master|release\/.*|feature\/.*)$/
844
+ branch =~ /^feature\/.*$/
845
+ branch =~ /^feature\/.*/
846
+ branch =~ /^release\/.*$/
847
+ branch =~ /^release\/.*/
848
+ branch =~ /^release\/\d*$/
849
+ branch =~ /^release\/\d*$/ OR branch =~ /^QA\_\d*$/
850
+ branch =~ /^v\d+\.\d+\.\d+.*$/
851
+ branch =~ /feature\/.+/
852
+ branch =~ /master|back\/cs\/main/
853
+ branch =~ /master|back\/go\/main/
854
+ branch =~ /master|front\/ts\/main/
855
+ branch =~ /release\/.+/
856
+ branch =~ ^(master)$
857
+ branch =~ ^(master|preview-(.*)|develop|rc)$
858
+ branch =~ ^(master|production\-reg\.burst)$
859
+ branch =~ ^(master|production\-reg|production\-reg\.burst)$
860
+ branch =~ ^(master|v?(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-[\da-z-]+(?:\.[\da-z-]+)*)?(?:\+[\da-z-]+(?:\.[\da-z-]+)*)?)$
861
+ branch =~ ^(pre-master|master|production\-reg|production\-reg\.burst)$
862
+ branch =~ ^(pre-master|master|production\-reg|production\-reg\.test|production\-reg\.burst)$
863
+ branch =~ ^(preview-(.*)|develop)$
864
+ branch =~ ^(prod-seating|prod-cp|prod-accounts|pre-master|production\-reg|production\-reg\.test|production\-reg\.burst)$
865
+ branch =~ ^(rc)$
866
+ branch =~ ^(v?(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-[\da-z-]+(?:\.[\da-z-]+)*)?(?:\+[\da-z-]+(?:\.[\da-z-]+)*)?)$
867
+ branch =~ ^.*(?<!-built)$
868
+ branch =~ ^[0-9]
869
+ branch =~ ^bywater-v
870
+ branch =~ ^develop
871
+ branch =~ ^develop OR branch =~ ^master OR branch =~ ^release
872
+ branch =~ ^develop/.*$
873
+ branch =~ ^f
874
+ branch =~ ^feature\/.*
875
+ branch =~ ^feature\/.* AND type = push
876
+ branch =~ ^feature\/.*$
877
+ branch =~ ^feature\/.*$ AND type = push
878
+ branch =~ ^greenkeeper
879
+ branch =~ ^greenkeeper\/.*$
880
+ branch =~ ^greenkeeper\/.*-.*$
881
+ branch =~ ^master
882
+ branch =~ ^master AND "$TRAVIS_PULL_REQUEST" == "false"
883
+ branch =~ ^master AND NOT type =~ ^pull_request
884
+ branch =~ ^master OR branch =~ /^pr\..*/
885
+ branch =~ ^master$
886
+ branch =~ ^master$ && TRAVIS_PULL_REQUEST == "false"
887
+ branch =~ ^master$ && pull_request == "false"
888
+ branch =~ ^master$ AND type NOT IN (pull_request)
889
+ branch =~ ^master$ AND type ~= pull_request
890
+ branch =~ ^master|develop$ OR branch =~ ^(release|hotfix|bugfix|support)\/.*$ OR tag IS present OR type IN (pull_request, api)
891
+ branch =~ ^preview-(.*)$
892
+ branch =~ ^prod.*$
893
+ branch =~ ^release
894
+ branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$
895
+ branch =~ ^release/\d*$
896
+ branch =~ ^release/\d*$ OR branch =~ ^QA_\d*$
897
+ branch =~ ^release\/\d*$ OR branch =~ ^QA\_\d*$
898
+ branch =~ ^staging*$
899
+ branch =~ ^staging*$ && TRAVIS_PULL_REQUEST == "false"
900
+ branch =~ ^staging*$ AND type != pull_request
901
+ branch =~ ^staging*$ AND type NOT IN (pull_request)
902
+ branch =~ ^staging*$ AND type ~= pull_request
903
+ branch =~ ^staging.*$
904
+ branch =~ ^test-
905
+ branch =~ ^test- OR type IN(pull_request)
906
+ branch =~ ^travis-call-gordon.*$
907
+ branch =~ ^v.+\dlibzfs$
908
+ branch =~ ^v.+fable-import-nodelibzfs$
909
+ branch =~ ^v.+libzfs$
910
+ branch =~ ^v.+libzfs-sys$
911
+ branch =~ ^v.+node$
912
+ branch =~ ^v.+node-libzfs$
913
+ branch =~ ^v[0-9]+\.(x|[0-9]+)\.x$ AND NOT type IN (pull_request)
914
+ branch =~ ^v[0-9]+\.[0-9]+\.x$
915
+ branch =~ ^v\d+\.\d+\.\d$
916
+ branch =~ ^v\d+\.\d+\.\d+$
917
+ branch =~ ^v\d+\.\d+\.\d+-.+$
918
+ branch =~ ^v\d+\.\d+\.\d+-.+node-libzfs$
919
+ branch =~ ^v\d+\.\d+\.\d+-1.*$
920
+ branch =~ ^wip OR branch =~ ^pr-
921
+ branch =~ back
922
+ branch =~ back/go/main
923
+ branch =~ coverage
924
+ branch =~ extraci OR (repo = percona/percona-server) AND (type = push)
925
+ branch =~ extraci OR repo = percona/percona-server AND type IN (push, cron)
926
+ branch =~ front
927
+ branch =~ front/ts/main
928
+ branch =~ fullci OR ((repo = percona/percona-server) AND (type = pull_request))
929
+ branch =~ fullci OR (repo = percona/percona-server) AND (type = pull_request)
930
+ branch =~ fullci OR repo = percona/percona-server AND type IN (push, pull_request, cron)
931
+ branch =~ imageproxy
932
+ branch =~ inverted
933
+ branch =~qa_branch-test
934
+ branch IN ("master")
935
+ branch IN ("master", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
936
+ branch IN ("master", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
937
+ branch IN ("master1", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
938
+ branch IN ("master1", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
939
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/")
940
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
941
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
942
+ branch IN ("raees/travisFix", master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
943
+ branch IN ("raees/travisFix", master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "")
944
+ branch IN ('master', 'develop')
945
+ branch IN (1.x, 2.x)
946
+ branch IN (Staging, Stable) AND type = push
947
+ branch IN (Testing, Stable) AND type = push
948
+ branch IN (Testing, Staging, Stable) AND type = push
949
+ branch IN (^v.*, master)
950
+ branch IN (alpha, beta, dev, master)
951
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$
952
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
953
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
954
+ branch IN (dev)
955
+ branch IN (dev, acc, stage, prod)
956
+ branch IN (dev, acc, stage, prod) AND fork = false
957
+ branch IN (dev, alpha, stage, prod)
958
+ branch IN (dev, master, demo)
959
+ branch IN (dev, stage, prod)
960
+ branch IN (dev, staging, production)
961
+ branch IN (dev1, master, staging, rc)
962
+ branch IN (develop)
963
+ branch IN (develop, SPP-323/create-edit-solutions) AND NOT type = pull_request
964
+ branch IN (develop, devops/deploy_tooling)
965
+ branch IN (develop, devops/fix_travis_build)
966
+ branch IN (develop, master)
967
+ branch IN (develop, master) AND type IN (push)
968
+ branch IN (develop, release/1.16.4)
969
+ branch IN (develop, release/1.16.5)
970
+ branch IN (develop, release/1.16.5.2)
971
+ branch IN (develop, release/1.16.5.3)
972
+ branch IN (develop, release/1.17.0)
973
+ branch IN (develop, release/1.17.2)
974
+ branch IN (develop, release/1.17.3)
975
+ branch IN (develop, release/1.19.1)
976
+ branch IN (develop, release/1.20)
977
+ branch IN (develop, release/1.21.0)
978
+ branch IN (develop, release/1.21.1)
979
+ branch IN (develop, rerelease/1.16.3)
980
+ branch IN (develop, staging) OR type = pull_request
981
+ branch IN (develop, staging, master) OR type = pull_request
982
+ branch IN (develop, travis)
983
+ branch IN (develop,poc/administration-page)
984
+ branch IN (develop,release/1.16.5.3)
985
+ branch IN (develop,release/1.16.5.5)
986
+ branch IN (develop,release/1.16.5.6)
987
+ branch IN (develop,release/1.19.0)
988
+ branch IN (development, master) AND NOT type = pull_request
989
+ branch IN (env(RELEASE_BRANCHES))
990
+ branch IN (fastlane-beta, develop)
991
+ branch IN (feat/travis, develop, rc, staging, master) OR type = pull_request
992
+ branch IN (feat/travis, rc, staging, master) OR type = pull_request
993
+ branch IN (fix-downloading-GuiEnv, master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$
994
+ branch IN (fix-downloading-GuiEnv, master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
995
+ branch IN (master)
996
+ branch IN (master) OR type = pull_request
997
+ branch IN (master, TASK-10)
998
+ branch IN (master, TASK-3)
999
+ branch IN (master, TASK-3, TASK-24)
1000
+ branch IN (master, alpha, staging, prod)
1001
+ branch IN (master, alpha, staging, prod) AND NOT (env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1002
+ branch IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1003
+ branch IN (master, alpha, staging, prod) AND NOT (env(SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1004
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$
1005
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1006
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1007
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$
1008
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1009
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1010
+ branch IN (master, appveyor-travis-master, atom/release) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1011
+ branch IN (master, appveyor-travis-master, dont-use-xcpretty) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1012
+ branch IN (master, beta, release) OR tag IS present
1013
+ branch IN (master, ci-deploy)
1014
+ branch IN (master, ci-deploy, ci-temp-test)
1015
+ branch IN (master, code-freeze-2017)
1016
+ branch IN (master, compatibility-9)
1017
+ branch IN (master, dev)
1018
+ branch IN (master, dev, creating-structure)
1019
+ branch IN (master, devel)
1020
+ branch IN (master, devel) OR branch =~ ^version-
1021
+ branch IN (master, develop)
1022
+ branch IN (master, develop) AND (NOT type = pull_request)
1023
+ branch IN (master, develop) AND NOT type = pull_request
1024
+ branch IN (master, develop) AND type = push
1025
+ branch IN (master, develop) AND type IN (push, api, cron)
1026
+ branch IN (master, develop) OR branch =~ ^release\/.+$ OR branch =~ ^hotfix\/.+$ OR branch =~ ^bugfix\/.+$ OR branch =~ ^support\/.+$ OR tag IS present OR type IN (pull_request, api)
1027
+ branch IN (master, develop) OR tag =~ ^v
1028
+ branch IN (master, develop, SPP-323/create-edit-solutions) AND NOT type = pull_request
1029
+ branch IN (master, develop, optimize-docker)
1030
+ branch IN (master, develop, optimize-docker) AND NOT type = pull_request
1031
+ branch IN (master, develop, robot-tests) AND NOT type = pull_request
1032
+ branch IN (master, development)
1033
+ branch IN (master, development, MIS-504-take1)
1034
+ branch IN (master, development, MIS-569-stages)
1035
+ branch IN (master, development, MIS-569-stages-take2)
1036
+ branch IN (master, development, MIS-592-retake0)
1037
+ branch IN (master, development, MIS-592-retake2)
1038
+ branch IN (master, development, MIS-592-retake3)
1039
+ branch IN (master, development, MIS-592-retake4)
1040
+ branch IN (master, development, MIS-592-retake5)
1041
+ branch IN (master, development, MIS-592-ssk-run)
1042
+ branch IN (master, development, MIS-592-take10)
1043
+ branch IN (master, development, features)
1044
+ branch IN (master, devly-ci)
1045
+ branch IN (master, documentation) AND type IN (push, api)
1046
+ branch IN (master, edge, app-shell_travis-testing-mc) AND type != pull_request
1047
+ branch IN (master, emergent_qa)
1048
+ branch IN (master, ezkl/shiply-fixes)
1049
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$
1050
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1051
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1052
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$
1053
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1054
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1055
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$
1056
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1057
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1058
+ branch IN (master, npm-publish)
1059
+ branch IN (master, optimize-docker) AND NOT type = pull_request
1060
+ branch IN (master, production)
1061
+ branch IN (master, production, dockerize-scheduler-worker)
1062
+ branch IN (master, seetest/sandbox)
1063
+ branch IN (master, staging)
1064
+ branch IN (master, staging, prod)
1065
+ branch IN (master, testing)
1066
+ branch IN (master, travis)
1067
+ branch IN (master, trying) OR tag =~ ^v\d+\.\d+\.\d+.*$
1068
+ branch IN (master, trying, staging) OR tag =~ ^\d+\.\d+\.\d+.*$
1069
+ branch IN (master, trying, staging) OR tag =~ ^v\d+\.\d+\.\d+.*$
1070
+ branch IN (master, turn-xcbeauty-on, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1071
+ branch IN (master,dev,qa) or type = pull_request
1072
+ branch IN (master,travis)
1073
+ branch IN (qa)
1074
+ branch IN (qa, release__1.5)
1075
+ branch IN (qa, staging, production)
1076
+ branch IN (qa, staging, production, release__1.5)
1077
+ branch IN (rc, staging, master) OR type = pull_request
1078
+ branch IN (stable, master)
1079
+ branch IN (stable, master) or branch =~ ^.*-ui$
1080
+ branch IN (stable, master) or branch =~ ^.*[-_]ui$
1081
+ branch IN (staging, demo, production)
1082
+ branch IN (staging, production)
1083
+ branch IN (staging, trying)
1084
+ branch IN (v.0.9.2.1, master)
1085
+ branch IN (working)
1086
+ branch IS present
1087
+ branch NOT IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1088
+ branch NOT IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
1089
+ branch in (dev, knackperf) and type = push
1090
+ branch in (develop, /feature\/.+/ , /release\/.+/)
1091
+ branch in (master)
1092
+ branch in (master, dev) OR type == pull
1093
+ branch in (master, develop)
1094
+ branch in (master, develop) AND type != pull_request
1095
+ branch in (master, develop, hotfix)
1096
+ branch in (master, develop, hotfix) AND type != pull_request
1097
+ branch ~= ^(preview-(.*)|develop)$
1098
+ branch ~= ^(rc)$
1099
+ branch ~= ^[0-9]\.[0-9]$
1100
+ branch ~= coverage
1101
+ branch ~= imageproxy
1102
+ branch=adv-travis-config
1103
+ branch=chore/rework-docker-entry
1104
+ branch=dev
1105
+ branch=feature/publish-artifactory
1106
+ branch=master
1107
+ branch=master OR type=pull_request
1108
+ branch=revert/sopstool-intro
1109
+ branche = master
1110
+ build =~ /^feature\/.*$/
1111
+ build IN (develop, master, /^release\/.*$/)
1112
+ changes = 0
1113
+ changes = 1
1114
+ env(ANY_SERVICES_FILES_CHANGED) != ""
1115
+ env(BAR) IS blank
1116
+ env(BUILD_DOCS) = false
1117
+ env(BUILD_DOCS) IS present
1118
+ env(COVERALLS_REPO_TOKEN) != ''
1119
+ env(COVERALLS_REPO_TOKEN) != '' AND branch =~ ^v[0-9]+\.x\.x$
1120
+ env(COVERITY_SCAN_BRANCH) != 1
1121
+ env(COVERITY_SCAN_BRANCH) == 1
1122
+ env(DOCS) = true
1123
+ env(EXECUTABLE) = false
1124
+ env(FEEDSTOCKS) IS BLANK
1125
+ env(FEEDSTOCKS) IS blank
1126
+ env(FOO) = fifi
1127
+ env(FOO) = fofo
1128
+ env(FOO) IS blank
1129
+ env(FOO) IS present
1130
+ env(FORCE_REBUILD) ~= ^true$
1131
+ env(FRONTEND_FILES_CHANGED) != ""
1132
+ env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != ""
1133
+ env(FRONTEND_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != ""
1134
+ env(GH_TOKEN)
1135
+ env(GH_TOKEN) IS NOT present
1136
+ env(GH_TOKEN) IS blank
1137
+ env(INGEST_VERSION) =~ ^0.1.0-SNAPSHOT$
1138
+ env(IS_COMMIT_UPDATE_VERSION) == 'yes'
1139
+ env(LINT) = true
1140
+ env(LP3D_BUILD_PKG) IS blank
1141
+ env(MONGOOSE_VERSION) = 5
1142
+ env(NODE_ENV) = production
1143
+ env(NODE_ENV) = test
1144
+ env(PEPA) IS blank
1145
+ env(PKG) IS present
1146
+ env(PRE_COMMIT_MESSAGE) = xxx
1147
+ env(PRE_COMMIT_MESSAGE) =~ xxx
1148
+ env(PRIOR_VERSION) != 1.*
1149
+ env(PRIOR_VERSION) != env(RELEASE_VERSION)
1150
+ env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-bucket-objects
1151
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION)
1152
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master
1153
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push
1154
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = cotsog/travis_ci_prod_regular
1155
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = justien/travis_conditional_stages
1156
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-aws-bucket-objects
1157
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-aws-watchmaker
1158
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-external-file-cache
1159
+ env(PRIOR_VERSION) IS present and env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-bucket-objects
1160
+ env(PRIOR_VERSION) IS present and env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-watchmaker
1161
+ env(PROJECT) = ethereum
1162
+ env(REBUILD) = true OR env(FORCE_REBUILD) = true OR (branch = master AND NOT type=pull)
1163
+ env(REBUILD) = true OR env(FORCE_REBUILD) = true OR branch = master
1164
+ env(REBUILD) OR env(FORCE_REBUILD) OR branch = master
1165
+ env(REBUILD) ~= ^true$ OR env(FORCE_REBUILD) ~= ^true$ OR (branch = master AND type = push)
1166
+ env(RELEASE_ENVIROMENT) = development
1167
+ env(RELEASE_ENVIRONMENT) NOT IN (production, staging, development)
1168
+ env(SENSITIVE_FILES_CHANGED) != ""
1169
+ env(SERVICE) = lint
1170
+ env(SNYK_TOKEN) AND env(GH_TOKEN)
1171
+ env(SONAR_TOKEN) IS present
1172
+ env(TARGET) = vsi
1173
+ env(TARGET) = vsi AND type = api
1174
+ env(TEST_SUITE) = env(PY_LINT)
1175
+ env(TEST_SUITE) = env(PY_TEST)
1176
+ env(TEST_TYPE) = build
1177
+ env(TRAVIS_API_TYPE) = nightly
1178
+ env(TRAVIS_API_TYPE) IS blank
1179
+ env(TRAVIS_BRANCH) != coverity
1180
+ env(TRAVIS_BRANCH) != env(COVERITY_BRANCH_NAME)
1181
+ env(TRAVIS_BRANCH) = env(COVERITY_BRANCH_NAME)
1182
+ env(TRAVIS_COMMIT_MESSAGE) != "Deploy AdguardTeam/FiltersRegistry to github.com/AdguardTeam/FiltersRegistry.git:test"
1183
+ env(TRAVIS_COMMIT_MESSAGE) !~ AUTO-CREATED
1184
+ env(TRAVIS_COMMIT_MESSAGE) !~ ^AUTO-CREATED
1185
+ env(TRAVIS_COMMIT_MESSAGE) =~ *bar*
1186
+ env(TRAVIS_COMMIT_MESSAGE) =~ *osx*
1187
+ env(TRAVIS_COMMIT_MESSAGE) ~= BP_E2E
1188
+ env(TRAVIS_EVENT_TYPE) != cron
1189
+ env(TRAVIS_OS_NAME) = 'linux' && env(DIST_NAME) = 'ubuntu' && env(DIST_VERSION) = 'xenial' && env(CC) = 'gcc' && env(MAKE_TARGET) =~ 'deb' && env(DEPLOY_PACKAGE) = 'true'
1190
+ env(TRAVIS_PULL_REQUEST_BRANCH) IS blank AND (branch = master OR tag =~ env(SEMVER_REGEX))
1191
+ env(TRAVIS_REPO_SLUG) != apache/thrift
1192
+ env(TRAVIS_TAG) IS blank
1193
+ env(VERSION) != 3.8-dev
1194
+ env(VERSION) != 3.8-dev AND ( NOT env(VERSION) =~ ^pypy )
1195
+ env(VSI) IS present
1196
+ env(VSI_TAG) = latest
1197
+ env(VSI_TAG) =~ ^[0-9.]+
1198
+ env(VSI_TAG) IS present
1199
+ env(env_name) != "false"
1200
+ env(env_name) IS blank
1201
+ env(env_name) IS present
1202
+ env(name) = pip_requirements_check
1203
+ env(name) = production_env_check
1204
+ event != pull_request
1205
+ false
1206
+ fork
1207
+ fork != false
1208
+ fork = false
1209
+ fork = true
1210
+ fork == false
1211
+ fork IS true
1212
+ fork OR (type IN (pull_request))
1213
+ fork OR type IN (pull_request)
1214
+ head_branch = cd
1215
+ head_branch = fix-hdfs-travis
1216
+ head_branch = master or head_branch = travis-ci
1217
+ head_branch = staging or head_branch = travis-ci
1218
+ head_branch = travis-ci
1219
+ head_branch == master
1220
+ head_branch == master AND head_branch != master
1221
+ head_branch =~ ^release.*
1222
+ head_branch =~ ^release.* || branch =~ ^release.*
1223
+ head_branch =~ ^release/.*
1224
+ head_branch =~ ^release/.* AND fork == false
1225
+ head_branch =~ ^release/.* || branch =~ ^release/.*
1226
+ head_branch IS NOT blank
1227
+ head_branch IS blank AND branch = master
1228
+ head_branch IS present
1229
+ head_repo = boostorg/uuid && head_branch = master
1230
+ my_var = notdemo
1231
+ name = stable
1232
+ not (env(SKIP) = Test1)
1233
+ not (env(SKIP) = Test2)
1234
+ not branch = coverity_scan
1235
+ not fork
1236
+ not tag =~ ^autobuild
1237
+ not tag is present
1238
+ not type = cron
1239
+ os = linux
1240
+ os = osx
1241
+ pull_request
1242
+ pull_request = false
1243
+ repo != apache/thrift
1244
+ repo != percona/percona-server OR repo = percona/percona-server AND type IN (push, cron)
1245
+ repo = 2m/sssio
1246
+ repo = 2m/sssio AND tag =~ ^v
1247
+ repo = Azure/azure-cli
1248
+ repo = Azure/azure-cli and type = push
1249
+ repo = Azure/azure-cli-extensions and branch = master and type = cron
1250
+ repo = Azure/azure-cli-extensions and branch = master and type = push
1251
+ repo = ZFFramework/ZFFramework AND branch = master
1252
+ repo = apache/thrift
1253
+ repo = arvidn/libtorrent
1254
+ repo = boostorg/uuid and branch = develop
1255
+ repo = camptocamp/c2cgeoportal
1256
+ repo = derekbekoe/azure-cli-extensions and branch = ext-docs and type = push
1257
+ repo = derekbekoe/azure-cli-extensions and type = push
1258
+ repo = gzm55/parent-repositories-maven-extension AND branch = master AND type != pull_request
1259
+ repo = gzm55/parent-repositories-maven-extension AND tag =~ ^parent-repositories-extension-[0-9]+(\.[0-9]+)+$
1260
+ repo = loderunner/ansible-clang AND branch = master
1261
+ repo = sigo/console-log-hiring and branch = master and type = push
1262
+ repo = sigo/semantic-release-test3 and branch = master and type in (push, api, cron)
1263
+ repo == quicktype/quicktype AND branch == master AND type IN (push, api, cron)
1264
+ repo =~ ^JimiC AND branch = docker
1265
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request
1266
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(TAG) IS present
1267
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(TARGET) IS present
1268
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1269
+ repo =~ ^JimiC AND branch = master AND env(TARGET) = vsi AND NOT env(TAG) IS present
1270
+ repo =~ ^JimiC AND branch = master AND env(TARGET) = vsi AND type = api AND NOT env(TAG) IS present
1271
+ repo =~ ^JimiC AND branch = master AND env(VSI_TAG) = latest AND type = api
1272
+ repo =~ ^JimiC AND branch = master AND type = api AND NOT env(TAG) IS present
1273
+ repo =~ ^JimiC AND branch = master AND type = push AND NOT tag IS present
1274
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^[0-9.]+-*[a-zA-Z0-9]*
1275
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^[0-9.]+-*[a-zA-Z0-9]* AND type = api
1276
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^latest|[0-9.]+-*[a-zA-Z0-9]* AND type = api
1277
+ repo =~ ^vscode-icons AND branch = master
1278
+ repo =~ ^vscode-icons AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1279
+ repo =~ ^vscode-icons AND branch = master AND NOT tag IS present AND type = push
1280
+ repo =~ ^vscode-icons AND branch = master AND type != pull_request AND NOT tag IS present AND NOT env(TARGET) IS present
1281
+ repo =~ ^vscode-icons AND branch = master AND type = push
1282
+ repo =~ ^vscode-icons AND branch = master AND type = push AND NOT tag IS present
1283
+ repo =~ ^vscode-icons AND env(VSI_TAG) =~ ^latest|[0-9.]+-*[a-zA-Z0-9]* AND type = api
1284
+ repo =~ ^vscode-icons AND tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1285
+ repo =~ ^vscode-icons AND tag IS present AND type = push
1286
+ sender != RQF7_bot
1287
+ sender != RQF_bot
1288
+ sender != Travis
1289
+ sender != ^weecologydeploy$
1290
+ sender != traviscibot
1291
+ sender !~ bot$
1292
+ sender = rslifka
1293
+ sender =~ ^.*$
1294
+ sender =~ ^alrr.*$
1295
+ tag
1296
+ tag != "-fdroid$"
1297
+ tag != autobuild
1298
+ tag != env(TRAVIS_TAG)
1299
+ tag != master-snapshot
1300
+ tag != master-snapshot AND tag !~ ^untagged
1301
+ tag = submit
1302
+ tag =~ .*
1303
+ tag =~ .*beta.*
1304
+ tag =~ .+
1305
+ tag =~ /^release-.*$/
1306
+ tag =~ /release/ OR tag IS blank
1307
+ tag =~ 0.
1308
+ tag =~ [0-9]+\.[0-9]+\.[0-9]+
1309
+ tag =~ [0-9]+\.[0-9]+\.[0-9]+ OR type = pull_request
1310
+ tag =~ ^((?!-\w).)*$
1311
+ tag =~ ^(?!\s*$).+
1312
+ tag =~ ^*-macos$
1313
+ tag =~ ^.*-v[0-9]+\.[0-9]+.*$
1314
+ tag =~ ^.+$
1315
+ tag =~ ^0
1316
+ tag =~ ^@dev-*
1317
+ tag =~ ^@dev-* OR (branch = production AND type = pull_request)
1318
+ tag =~ ^[0-9]
1319
+ tag =~ ^[0-9]+\.[0-9]+\.[0-9]+
1320
+ tag =~ ^[0-9]\.[0-9]\.[0-9]$
1321
+ tag =~ ^\d
1322
+ tag =~ ^\d+(\.\d+)+(-.*)?
1323
+ tag =~ ^\d+(\.\d+)+(-.*)? OR branch = travisbuilds-selenium
1324
+ tag =~ ^\d+(\.\d+)+(-.*)? OR tag = staging
1325
+ tag =~ ^\d+\.\d+\.\d+$
1326
+ tag =~ ^\d+\.\d+\.\d+-p\d+$
1327
+ tag =~ ^\d+\.\d+\.\d+-p\d+$ AND type != pull_request
1328
+ tag =~ ^\d.\d.\d
1329
+ tag =~ ^android_
1330
+ tag =~ ^deploy-.*$
1331
+ tag =~ ^desktop-v-
1332
+ tag =~ ^eva
1333
+ tag =~ ^gatsby@.*
1334
+ tag =~ ^ios_
1335
+ tag =~ ^orderwell-v([0-9]+\.)*[0-9]+-RC[0-9]*$
1336
+ tag =~ ^orderwell-v([0-9]+\.)*[0-9]+-release$
1337
+ tag =~ ^prerelease_
1338
+ tag =~ ^release-
1339
+ tag =~ ^release-.*$
1340
+ tag =~ ^release\_v.*-.*
1341
+ tag =~ ^release_
1342
+ tag =~ ^ross
1343
+ tag =~ ^smarti- AND type = push
1344
+ tag =~ ^v
1345
+ tag =~ ^v AND fork = false
1346
+ tag =~ ^v OR type in (push, cron)
1347
+ tag =~ ^v(\d\.){0,2}\d
1348
+ tag =~ ^v*.*.*
1349
+ tag =~ ^v.*
1350
+ tag =~ ^v.*$
1351
+ tag =~ ^v0
1352
+ tag =~ ^v1
1353
+ tag =~ ^v2
1354
+ tag =~ ^v2\.\d+(\.\d+)?$
1355
+ tag =~ ^v8 AND type = push
1356
+ tag =~ ^v?([0-9])*\.[0-9]*\.[0-9]*(-\w+)?$
1357
+ tag =~ ^v[0-9.]+$ OR branch != master
1358
+ tag =~ ^v[0-9]
1359
+ tag =~ ^v[0-9]+.[0-9]+.[0-9]+(-alpha|-beta)?$
1360
+ tag =~ ^v[0-9]+\.
1361
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
1362
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-.+)?$
1363
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$
1364
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$ OR tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
1365
+ tag =~ ^v[0-9]\.[0-9]
1366
+ tag =~ ^v[0-9]\.[0-9]\.[0-9]$
1367
+ tag =~ ^v[0-9]\.[0-9]\.[0-9]-rc[0-9]$
1368
+ tag =~ ^v[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}$
1369
+ tag =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$
1370
+ tag =~ ^v[1-9]
1371
+ tag =~ ^v\d
1372
+ tag =~ ^v\d AND type = push
1373
+ tag =~ ^v\d+
1374
+ tag =~ ^v\d+(\.\d+)+
1375
+ tag =~ ^v\d+(\.\d+)+(-.*)?
1376
+ tag =~ ^v\d+(\.\d+)+(-.*)? OR branch = travisbuilds-selenium
1377
+ tag =~ ^v\d+\.\d+(\.\d+)?$
1378
+ tag =~ ^v\d+\.\d+\.\d+
1379
+ tag =~ ^v\d+\.\d+\.\d+$
1380
+ tag =~ ^v\d+\.\d+\.\d+-rc\d+$
1381
+ tag =~ ^v\d+\.\d+\.\d+\-\d+$
1382
+ tag =~ ^v\d+\.\d+\.\d+\-dev.\d+$
1383
+ tag =~ ^v\d.*
1384
+ tag =~ ^v\d.\d.\d
1385
+ tag =~ ^version_code/ OR (tag IS NOT present)
1386
+ tag =~ ^version_code/ OR tag IS NOT present
1387
+ tag =~ ^zmobile-v([0-9]+\.)*[0-9]+-RC[0-9]*$
1388
+ tag =~ ^zmobile-v([0-9]+\.)*[0-9]+-release$
1389
+ tag IS NOT blank
1390
+ tag IS NOT present
1391
+ tag IS NOT present and type IN (push)
1392
+ tag IS PRESENT
1393
+ tag IS blank
1394
+ tag IS blank AND NOT (type IN (push) AND branch = master)
1395
+ tag IS blank AND NOT type IN (push)
1396
+ tag IS blank AND branch = master
1397
+ tag IS blank AND branch = master AND type != pull_request
1398
+ tag IS blank AND type != pull_request
1399
+ tag IS blank AND type = pull_request
1400
+ tag IS blank AND type = push
1401
+ tag IS blank AND type = push AND branch = master
1402
+ tag IS blank AND type IN (pull_request, push)
1403
+ tag IS blank OR tag = 7.6.0
1404
+ tag IS blank OR tag = 7.6.7
1405
+ tag IS blank OR tag = 7.7.0
1406
+ tag IS blank OR tag = 7.7.4
1407
+ tag IS blank OR tag = 7.8.0
1408
+ tag IS blank OR tag = 7.8.0-SNAPSHOT
1409
+ tag IS blank OR tag = 7.8.0-alpha4
1410
+ tag IS present
1411
+ tag IS present AND NOT tag =~ \+d2$
1412
+ tag IS present AND repo = camptocamp/ngeo
1413
+ tag IS present AND tag != "-fdroid$"
1414
+ tag IS present AND tag =~ ^(?:[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,})(?:(-(alpha|beta|rc)\.[0-9]{1,}){1,})?$
1415
+ tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+
1416
+ tag IS present AND type = push
1417
+ tag IS present AND type = push AND tag =~ ^v
1418
+ tag IS present OR ( branch = master AND pull_request IS false )
1419
+ tag IS present OR ( branch = master AND type != pull_request )
1420
+ tag IS present OR (branch = master AND type != pull_request)
1421
+ tag IS present OR branch = master
1422
+ tag IS present OR branch = master OR type IN (pull_request)
1423
+ tag IS present OR branch =~ ^v[0-9]+\.(x|[0-9]+)\.x$ AND NOT type IN (pull_request) AND repo = sociomantic-tsunami/libdrizzle-redux
1424
+ tag IS present OR type = pull_request
1425
+ tag IS present and branch IS present
1426
+ tag is blank
1427
+ tag is present
1428
+ tag or branch = master
1429
+ tag ~= ^(stable|beta|future)/
1430
+ tag ~= ^v
1431
+ tags = true
1432
+ tags =rue
1433
+ tags IS blank
1434
+ true
1435
+ true || "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "master" && "$DO_RELEASE" == "true"
1436
+ type != api
1437
+ type != cron
1438
+ type != cron AND type != api
1439
+ type != cron AND type != pull_request
1440
+ type != cron and branch = master
1441
+ type != pull-request AND branch = master
1442
+ type != pull_request
1443
+ type != pull_request AND ( branch = release OR branch = master OR branch =~ ^release-(\d).(\d).(\d)$ )
1444
+ type != pull_request AND ( branch = release OR branch =~ ^release-(\d).(\d).(\d)$ )
1445
+ type != pull_request AND ( branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$ )
1446
+ type != pull_request AND (branch = master OR tag =~ env(SEMVER_REGEX))
1447
+ type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$)
1448
+ type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-)
1449
+ type != pull_request AND (head_branch =~ ^release/.* OR branch =~ ^release/.*)
1450
+ type != pull_request AND (head_branch =~ ^release/major/.* OR branch =~ ^release/major/.*)
1451
+ type != pull_request AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.)
1452
+ type != pull_request AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.*)
1453
+ type != pull_request AND (head_branch =~ ^release/patch/.* OR branch =~ ^release/patch/.*)
1454
+ type != pull_request AND (tag IS present OR branch IN (master, edge))
1455
+ type != pull_request AND (tag IS present OR branch IN (master, edge, app-shell_travis-testing-mc))
1456
+ type != pull_request AND branch = master
1457
+ type != pull_request AND branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present
1458
+ type != pull_request AND branch IN (docker-and-kubernetes-deployment-updates)
1459
+ type != pull_request AND branch IN (master, develop)
1460
+ type != pull_request AND fork = false
1461
+ type != pull_request AND tag IS blank
1462
+ type != pull_request AND tag IS present
1463
+ type != pull_request AND type != cron
1464
+ type != pull_request OR (type == pull_request AND head_branch == not_a_real_branch)
1465
+ type != pull_request OR branch =~ not-the-branch-name
1466
+ type != pull_request OR head_branch = fix-hdfs-travi
1467
+ type != pull_request OR head_branch = fix-hdfs-travis
1468
+ type != pull_request OR head_branch == not_a_real_branch
1469
+ type != pull_request OR head_branch =~ __TEST_HDFS__
1470
+ type != pull_request OR head_branch =~ hdfs-travis
1471
+ type != pull_request OR head_branch =~ not-the-branch-name
1472
+ type != pull_request OR type != pull_request
1473
+ type != pull_request and (branch =~ ^(v1\.\d+\.x|master)$ or tag IS present)
1474
+ type != pull_request and branch =~ ^(v1\.\d+\.x|master)$
1475
+ type != push
1476
+ type !=cron
1477
+ type = api
1478
+ type = api AND branch = master
1479
+ type = api AND branch = master AND repo = fmbg/ingress-nginx
1480
+ type = api AND branch = master AND repo = harborfront/kubernetes-ingress
1481
+ type = api AND branch = master AND repo = kubernetes/ingress-nginx
1482
+ type = api AND env(TRAVIS_API_TYPE) = nightly
1483
+ type = api OR branch = 'feature/cypress-tests' OR tag IS present
1484
+ type = cron
1485
+ type = cron OR (env(TEST_SQLITE) IS true)
1486
+ type = cron OR branch = master OR branch =~ ^android
1487
+ type = cron OR env(TEST_SQLITE)
1488
+ type = cron OR env(TEST_SQLITE) IS true
1489
+ type = cron OR env(TEST_SQLITE) ~= ^true$
1490
+ type = cron OR tag =~ ^v
1491
+ type = cron OR tag IS present
1492
+ type = cron OR tag is present
1493
+ type = cron OR type = api
1494
+ type = pr or branch = master
1495
+ type = pr or branch = master or NOT branch =~ ^docs
1496
+ type = pull_request
1497
+ type = pull_request AND branch = master
1498
+ type = pull_request AND branch = staging
1499
+ type = pull_request AND sender != snappy-m-o
1500
+ type = pull_request OR (type = push AND NOT branch = master)
1501
+ type = pull_request OR branch = auto
1502
+ type = pull_request OR branch = llvm-6-test
1503
+ type = pull_request OR branch = master
1504
+ type = pull_request OR branch = staging OR branch = trying OR branch =~ /^v\d+/
1505
+ type = pull_request OR branch = travis-conditionals-bug
1506
+ type = pull_request OR branch = try
1507
+ type = pull_request OR branch = try OR branch = auto
1508
+ type = pull_request OR branch =~ ^(master|development)$
1509
+ type = pull_request OR branch IN (develop, release, master)
1510
+ type = pull_request OR branch IN (master, development)
1511
+ type = pull_request OR branch in (master, travis-conditional-build)
1512
+ type = pull_request OR env(PRE_COMMIT_MESSAGE) =~ build-web
1513
+ type = pull_request OR tag IS present
1514
+ type = pull_request OR type = cron
1515
+ type = pull_request and sender = "alrra"
1516
+ type = pull_request and sender = "greenkeeper[bot]"
1517
+ type = push
1518
+ type = push AND (NOT tag =~ .{2,}$) AND (NOT type = pull_request)
1519
+ type = push AND (branch = dev OR branch = master)
1520
+ type = push AND (tag =~ ^v8 OR branch IN (master, neon, argon))
1521
+ type = push AND (tag =~ ^v[0-9].[0-9].[0-9]$)
1522
+ type = push AND (tag =~ ^v[0-9].[0-9].[0-9]-)
1523
+ type = push AND NOT (branch = develop)
1524
+ type = push AND NOT tag
1525
+ type = push AND NOT tag IS present AND branch = master
1526
+ type = push AND NOT type = pull_request
1527
+ type = push AND branch !~ ^(master|development)$
1528
+ type = push AND branch = RED-1180
1529
+ type = push AND branch = WI-194
1530
+ type = push AND branch = beta
1531
+ type = push AND branch = chrome-mobile
1532
+ type = push AND branch = delete-old-code
1533
+ type = push AND branch = deploy
1534
+ type = push AND branch = develop
1535
+ type = push AND branch = email-box
1536
+ type = push AND branch = fix-ci-travis AND repo = Shopify/ingress
1537
+ type = push AND branch = hash
1538
+ type = push AND branch = issue.npm-publish
1539
+ type = push AND branch = jk-header-2017-11-26
1540
+ type = push AND branch = jk-header-2017-12-01
1541
+ type = push AND branch = jk-landing-page-2017-11-22
1542
+ type = push AND branch = jk-landing-page-fixes-2017-12-08
1543
+ type = push AND branch = jk-landing-page-js-2017-11-22
1544
+ type = push AND branch = jk-test-test
1545
+ type = push AND branch = jk-thankyou2-changes-2017-11-20
1546
+ type = push AND branch = master
1547
+ type = push AND branch = master AND platform = Linux
1548
+ type = push AND branch = master AND repo = Shopify/ingress
1549
+ type = push AND branch = master AND repo = camptocamp/ngeo
1550
+ type = push AND branch = mt-mypy-selenium
1551
+ type = push AND branch = mt-new-give
1552
+ type = push AND branch = tempMaster
1553
+ type = push AND branch = tempMaster AND platform = Linux
1554
+ type = push AND branch = wheredid
1555
+ type = push AND branch IN (1.x, 2.x)
1556
+ type = push AND branch IN (dev1, master, staging, rc)
1557
+ type = push AND branch IN (master, develop)
1558
+ type = push AND branch IN (master, pre-merge)
1559
+ type = push AND branch IN (master, production)
1560
+ type = push AND branch IN (master, staging, beta, develop, preview)
1561
+ type = push AND branch IN (stable/ultra01-06, stable/ultra01-03)
1562
+ type = push AND branch IN (staging, production)
1563
+ type = push AND branch NOT IN (master, development)
1564
+ type = push AND env(PEPE) = pepo
1565
+ type = push AND env(SONAR_TOKEN) IS present
1566
+ type = push AND repo = camptocamp/ngeo AND branch IS present
1567
+ type = push AND repo = deliveryhero/rps-webkick
1568
+ type = push AND tag
1569
+ type = push AND tag IS NOT present AND branch = master
1570
+ type = push AND tag IS NOT present AND branch = master AND env(TRAVIS_PULL_REQUEST) = false
1571
+ type = push AND tag IS present
1572
+ type = push OR type = cron
1573
+ type = push OR type = pull
1574
+ type = push and branch = master
1575
+ type = push and branch =~ ^greenkeeper\/.*-.*$
1576
+ type = push and tag =~ ^v0.4
1577
+ type == "cron"
1578
+ type == cron
1579
+ type == pull_request
1580
+ type == pull_request AND head_branch == not_a_real_branch
1581
+ type == push
1582
+ type == push AND (NOT branch IN (master, development))
1583
+ type IN (api, cron)
1584
+ type IN (api, cron) OR tag IS present
1585
+ type IN (api, pull_request, push)
1586
+ type IN (api, push)
1587
+ type IN (cron)
1588
+ type IN (cron, api)
1589
+ type IN (cron, api) OR tag IS present
1590
+ type IN (cron, push, pull_reqest)
1591
+ type IN (pull_request)
1592
+ type IN (pull_request) AND branch IN (master, staging)
1593
+ type IN (pull_request) AND branch IN (staging)
1594
+ type IN (pull_request) AND branch IN (staging, production)
1595
+ type IN (pull_request) AND branch in (staging)
1596
+ type IN (pull_request) OR branch = master
1597
+ type IN (pull_request) OR branch IN (master, development)
1598
+ type IN (pull_request) OR tag
1599
+ type IN (pull_request) OR tag IS present
1600
+ type IN (pull_request) OR tag IS present OR branch = master
1601
+ type IN (pull_request, cron)
1602
+ type IN (pull_request, cron) OR (type = push AND branch = master)
1603
+ type IN (pull_request, cron) OR (type IN (push) AND branch = master)
1604
+ type IN (pull_request, cron, push)
1605
+ type IN (pull_request, push)
1606
+ type IN (pull_request, tag)
1607
+ type IN (push) AND branch = master
1608
+ type IN (push) AND branch = prerelease
1609
+ type IN (push, api, cron)
1610
+ type IN (push, cron)
1611
+ type IN (push, cron) AND (NOT branch =~ [0-9]{8,})
1612
+ type IN (push, cron) AND (tag =~ ^$)
1613
+ type IN (push, cron) AND NOT (branch =~ [0-9]{8,})
1614
+ type IN (push, cron) OR env(TRAVIS_EVENT_TYPE) = cron
1615
+ type IN (push, cron, api)
1616
+ type IN (push, pull_request)
1617
+ type IN (push, pull_request) AND branch = master
1618
+ type NOT IN (api, cron)
1619
+ type NOT IN (cron)
1620
+ type NOT IN (pull_request)
1621
+ type NOT IN (pull_request) AND head_branch =~ ^release.*
1622
+ type NOT IN (pull_request, api, cron)
1623
+ type NOT IN (push, pull_request) AND (tag IS present AND (branch = master))
1624
+ type NOT IN (push, pull_request) AND tag IS present AND branch = master
1625
+ type in (cron)
1626
+ type in (pull_request)
1627
+ type in (pull_request) and (branch =~ ^greenkeeper\/.*-.*$)
1628
+ type in (push)
1629
+ type in (push) AND branch != master
1630
+ type in (push) and branch IN (master)
1631
+ type in (push) and branch IN (master,staging)
1632
+ type in (push, pull_request, api)
1633
+ type not in (pull_request)
1634
+ type=cron