This adds support for regex matches of project stanzas such we can add
the same jobs to a large number of projects at once without having to
add each of them like in the following project stanza.
- job:
name: project-common-test
- job:
name: project-test1
- job:
name: project-test2
- project:
name: ^org/project.+
check:
jobs:
- project-common-test
- project:
name: org/project1
check:
jobs:
- project-test1
- project:
name: org/project2
check:
jobs:
- project-test2
Change-Id: I3d9a1f22a4659c9b0c63a320798a9f19c95cc79a
6 lines
166 B
YAML
6 lines
166 B
YAML
---
|
|
features:
|
|
- |
|
|
Project stanzas now support regex matching of :attr:`project.name`.
|
|
This can be used to apply project pipelines to many projects at once.
|