Summary
Settings affecting how issues are reported to pull requests.
- Assembly
- Cake
.Issues .PullRequests .dll - Namespace
- Cake
.Issues .PullRequests - Base Types
-
- Object
- RepositorySettings
graph BT
Type-->Base0["RepositorySettings"]
click Base0 "/api/Cake.Issues/RepositorySettings"
Base0-->Base1["Object"]
Type["ReportIssuesToPullRequestSettings"]
class Type type-node
Syntax
public class ReportIssuesToPullRequestSettings : RepositorySettings
Constructors
Name | Summary |
---|---|
Report |
Initializes a new instance of the ReportIssuesToPullRequestSettings class.
|
Properties
Name | Value | Summary |
---|---|---|
CommentSource | string |
Gets or sets a value used to decorate comments created by this addin.
Only comments with the same source will be resolved.
|
CommitId | string |
Gets or sets the hash of the commit for which the issues were reported.
|
IssueFilters | IList |
Gets list of filter functions which should be applied before posting issues to pull requests.
|
MaxIssuesToPost | Nullable |
Gets or sets the global number of issues which should be posted at maximum over all
IIssueProvider .
Issues are filtered by Priority and issues with an AffectedFileRelativePath
are prioritized.
Set to null to not set a global limit.
Default is to not set a global limit.
Use MaxIssuesToPostForEachIssueProvider to set the limit for each issue provider.
|
Max |
Nullable |
Gets or sets the number of issues which should be posted at maximum for each
IIssueProvider .
Issues are filtered by Priority and issues with an AffectedFileRelativePath
are prioritized.
Set to null to not limit issues per issue provider.
Default is to filter to 100 issues for each issue provider.
Use MaxIssuesToPost to set the global limit over all issue providers.
|
RepositoryRoot | DirectoryPath |
Gets the Root path of the repository.
Inherited from RepositorySettings
|
Extension Methods
Name | Value | Summary |
---|---|---|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From IssuesArgumentChecks
|