提交 cdabb9d5 编写于 作者: D drew 提交者: Evan Read

Added an example to doumentation for using multiple build policies with only: and except:

上级 db8f391e
......@@ -518,10 +518,24 @@ Four keys are available:
- `changes`
- `kubernetes`
If you use multiple keys under `only` or `except`, they act as an AND. The logic is:
If you use multiple keys under `only` or `except`, the keys will be evaluated as a
single conjoined expression. That is:
- `only:` means "include this job if all of the conditions match".
- `except:` means "exclude this job if any of the conditions match".
The the individual keys are logically joined by an AND:
> (any of refs) AND (any of variables) AND (any of changes) AND (if kubernetes is active)
`except` is implemented as a negation of this complete expression:
> NOT((any of refs) AND (any of variables) AND (any of changes) AND (if kubernetes is active))
This, more intuitively, means the keys join by an OR. A functionally equivalent expression:
> (any of refs) OR (any of variables) OR (any of changes) OR (if kubernetes is active)
#### `only:refs`/`except:refs`
> `refs` policy introduced in GitLab 10.0.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册