You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Set to `false` to disable adding files to the release commit. See [assets](#assets).
34
37
* @default ['CHANGELOG.md', 'package.json']
35
38
*/
36
-
assets?: string[]|false;
39
+
gitAssets?: string[]|false;
40
+
}
41
+
42
+
exportinterfaceGithubPluginOpts{
43
+
/**
44
+
* The GitHub Enterprise endpoint.
45
+
* @default `GH_URL` or `GITHUB_URL` environment variable.
46
+
*/
47
+
githubUrl?: string;
48
+
/**
49
+
* The GitHub Enterprise API prefix.
50
+
* @default `GH_PREFIX` or `GITHUB_PREFIX` environment variable.
51
+
*/
52
+
githubApiPathPrefix?: string;
53
+
/**
54
+
* An array of files to upload to the release. See [assets](#assets).
55
+
* @default -
56
+
*/
57
+
githubAssets?: string[];
58
+
/**
59
+
* The proxy to use to access the GitHub API. See [proxy](#proxy).
60
+
* @default `HTTP_PROXY` environment variable.
61
+
*/
62
+
proxy?: string;
63
+
/**
64
+
* The comment to add to each issue and pull request resolved by the release. Set to `false` to disable commenting on issues and pull requests. See [successComment](#successcomment).
65
+
* @default `:tada: This issue has been resolved in version ${nextRelease.version} :tada:\n\nThe release is available on [GitHub release](<github_release_url>)`
66
+
*/
67
+
successComment?: string;
68
+
/**
69
+
* The content of the issue created when a release fails. Set to `false` to disable opening an issue when a release fails. See [failComment](#failcomment).
70
+
* Friendly message with links to **semantic-release** documentation and support, with the list of errors that caused the release to fail.
71
+
*/
72
+
failComment?: string;
73
+
/**
74
+
* The title of the issue created when a release fails. Set to `false` to disable opening an issue when a release fails.
75
+
* @default `The automated release is failing 🚨`
76
+
*/
77
+
failTitle?: string;
78
+
/**
79
+
* The [labels](https://help.github.com/articles/about-labels) to add to the issue created when a release fails. Set to `false` to not add any label.
80
+
* @default `['semantic-release']`
81
+
*/
82
+
labels?: string[];
83
+
84
+
/**
85
+
* The [assignees](https://help.github.com/articles/assigning-issues-and-pull-requests-to-other-github-users) to add to the issue created when a release fails.
86
+
*
87
+
*/
88
+
assignees?: string[];
89
+
/**
90
+
The [labels](https://help.github.com/articles/about-labels) to add to each issue and pull request resolved by the release. Set to `false` to not add any label. See [releasedLabels](#releasedlabels).
0 commit comments