mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 00:46:30 +00:00
parent
3266e5f3cc
commit
ac2f1d26e8
1 changed files with 7 additions and 0 deletions
|
@ -96,6 +96,13 @@ pipeline:
|
|||
+ exclude: [ develop, feature/* ]
|
||||
```
|
||||
|
||||
The branch matching is done using [doublestar](https://github.com/bmatcuk/doublestar/#usage), note that a pattern starting with `*` should be put between quotes and a literal `/` needs to be escaped. A few examples:
|
||||
|
||||
- `*\\/*` to match patterns with exactly 1 `/`
|
||||
- `*\\/**` to match patters with at least 1 `/`
|
||||
- `*` to match patterns without `/`
|
||||
- `**` to match everything
|
||||
|
||||
### Skip Commits
|
||||
|
||||
Woodpecker gives the ability to skip individual commits by adding `[CI SKIP]` to the commit message. Note this is case-insensitive.
|
||||
|
|
Loading…
Reference in a new issue