Summary
Settings affecting how issues read from issue provider are reported to pull requests.
- Assembly
- Cake
.Issues .PullRequests .dll - Namespace
- Cake
.Issues .PullRequests - Interfaces
- Base Types
graph BT
Type-->Base0["ReadIssuesSettings"]
click Base0 "/api/Cake.Issues/ReadIssuesSettings"
Base0-->Base1["RepositorySettings"]
click Base1 "/api/Cake.Issues/RepositorySettings"
Base1-->Base2["Object"]
Type-.->Interface0["IReportIssuesToPullRequestFromIssueProviderSettings"]
click Interface0 "/api/Cake.Issues.PullRequests/IReportIssuesToPullRequestFromIssueProviderSettings"
Type-.->Interface1["IReadIssuesSettings"]
click Interface1 "/api/Cake.Issues/IReadIssuesSettings"
Type-.->Interface2["IReportIssuesToPullRequestSettings"]
click Interface2 "/api/Cake.Issues.PullRequests/IReportIssuesToPullRequestSettings"
Type-.->Interface3["IRepositorySettings"]
click Interface3 "/api/Cake.Issues/IRepositorySettings"
Type["ReportIssuesToPullRequestFromIssueProviderSettings"]
class Type type-node
Syntax
public class ReportIssuesToPullRequestFromIssueProviderSettings : ReadIssuesSettings,
IReportIssuesToPullRequestFromIssueProviderSettings, IReadIssuesSettings,
IReportIssuesToPullRequestSettings, IRepositorySettings
Constructors
Name | Summary |
---|---|
Report |
Initializes a new instance of the ReportIssuesToPullRequestFromIssueProviderSettings class.
|
Properties
Name | Value | Summary |
---|---|---|
CommentSource | string |
Gets or sets a value used to decorate comments created by this add-in.
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.
|
FileLinkSettings | FileLinkSettings |
Gets or sets settings which can be used for resolving links to source files.
Inherited from ReadIssuesSettings
|
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.
Default is null which won't set a global limit.
Use MaxIssuesToPostAcrossRuns to set a limit across multiple runs.
|
Max |
Nullable |
Gets or sets the global number of issues which should be posted at maximum over all
IIssueProvider and across multiple runs.
Issues are filtered by Priority and issues with an AffectedFileRelativePath
are prioritized.
Default is null which won't set a limit across multiple runs.
Use MaxIssuesToPost to set a limit for a single run.
|
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.
null won't limit issues per issue provider.
Default is to filter to 100 issues for each issue provider.
Use ProviderIssueLimits to set limits for individual issue providers.
|
ProviderIssueLimits | Dictionary |
Gets the issue limits for individual
IIssueProvider .
The key must be the ProviderType of a specific provider to which the limits should be applied to.
Use MaxIssuesToPostForEachIssueProvider to set the same limit to all issue providers.
|
RepositoryRoot | DirectoryPath |
Gets the Root path of the repository.
Inherited from RepositorySettings
|
Run | string |
Gets or sets the name of the run.
Inherited from ReadIssuesSettings
|
Extension Methods
Name | Value | Summary |
---|---|---|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From IssuesArgumentChecks
|