-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrelease.config.js
38 lines (37 loc) · 993 Bytes
/
release.config.js
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
/*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*
*/
module.exports = {
branches: [
{
name: "master",
level: "minor",
devDependencies: ["@zowe/cli", "@zowe/imperative", "@zowe/cli-test-utils"]
},
{
name: "zowe-v?-lts",
level: "patch",
devDependencies: ["@zowe/cli", "@zowe/imperative"]
}
],
plugins: [
"@octorelease/changelog",
["@octorelease/npm", {
aliasTags: {
latest: ["zowe-v3-lts"]
},
pruneShrinkwrap: true
}],
["@octorelease/github", {
checkPrLabels: true
}],
"@octorelease/git"
]
};