forked from oVirt/ovirt-engine-nodejs-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre-seeds.list.mjs
42 lines (39 loc) · 930 Bytes
/
pre-seeds.list.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
This file contains definitions for `preseeds`. They allow referencing an open/unmerged
github pull request as another source for `package.json` and `yarn.lock` files. This
allows a pull request to be able to build properly BEFORE it is merged.
Each pre-seed source should reference the GitHub project source, specific root
folder in the the repo where the correct `package.json` and `yarn.lock` files are
located, and the set of pull requests to access.
*/
export default {
'ui-extensions': {
github: {
owner: 'oVirt',
repo: 'ovirt-engine-ui-extensions'
},
folder: '/',
pr: [
87,
]
},
'ovirt-web-ui': {
github: {
owner: 'oVirt',
repo: 'ovirt-web-ui'
},
folder: '/',
pr: [
1648,
]
},
'cockpit-ovirt': {
github: {
owner: 'oVirt',
repo: 'cockpit-ovirt'
},
folder: '/dashboard',
pr: [
]
},
}