@pulumiverse/buildkite 3.1.0 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/input.d.ts +5 -4
- package/types/output.d.ts +5 -4
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface ProviderTimeouts {
|
|
|
20
20
|
export declare namespace Pipeline {
|
|
21
21
|
interface PipelineProviderSettings {
|
|
22
22
|
/**
|
|
23
|
-
* Whether to create builds when branches are pushed.
|
|
23
|
+
* Whether to create builds when branches are pushed. Defaults to `true` when `triggerMode` is set to `code`.
|
|
24
24
|
*/
|
|
25
25
|
buildBranches?: pulumi.Input<boolean>;
|
|
26
26
|
/**
|
|
@@ -36,7 +36,7 @@ export declare namespace Pipeline {
|
|
|
36
36
|
*/
|
|
37
37
|
buildPullRequestReadyForReview?: pulumi.Input<boolean>;
|
|
38
38
|
/**
|
|
39
|
-
* Whether to create builds for commits that are part of a pull request.
|
|
39
|
+
* Whether to create builds for commits that are part of a pull request. Defaults to `true` when `triggerMode` is set to `code`.
|
|
40
40
|
*/
|
|
41
41
|
buildPullRequests?: pulumi.Input<boolean>;
|
|
42
42
|
/**
|
|
@@ -64,7 +64,7 @@ export declare namespace Pipeline {
|
|
|
64
64
|
*/
|
|
65
65
|
publishBlockedAsPending?: pulumi.Input<boolean>;
|
|
66
66
|
/**
|
|
67
|
-
* Whether to update the status of commits in Bitbucket or GitHub.
|
|
67
|
+
* Whether to update the status of commits in Bitbucket or GitHub. Defaults to `true` when `triggerMode` is set to `code`.
|
|
68
68
|
*/
|
|
69
69
|
publishCommitStatus?: pulumi.Input<boolean>;
|
|
70
70
|
/**
|
|
@@ -88,7 +88,7 @@ export declare namespace Pipeline {
|
|
|
88
88
|
*/
|
|
89
89
|
skipBuildsForExistingCommits?: pulumi.Input<boolean>;
|
|
90
90
|
/**
|
|
91
|
-
* Whether to skip creating a new build for a pull request if an existing build for the commit and branch already exists.
|
|
91
|
+
* Whether to skip creating a new build for a pull request if an existing build for the commit and branch already exists. Defaults to `true` when `triggerMode` is set to `code`.
|
|
92
92
|
*/
|
|
93
93
|
skipPullRequestBuildsForExistingCommits?: pulumi.Input<boolean>;
|
|
94
94
|
/**
|
|
@@ -99,6 +99,7 @@ export declare namespace Pipeline {
|
|
|
99
99
|
* - `none` will not create any builds based on GitHub activity.
|
|
100
100
|
*
|
|
101
101
|
* > `triggerMode` is only valid if the pipeline uses a GitHub repository.
|
|
102
|
+
* > If not set, the default value is `code` and other provider settings defaults are applied.
|
|
102
103
|
*/
|
|
103
104
|
triggerMode?: pulumi.Input<string>;
|
|
104
105
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare namespace Pipeline {
|
|
2
2
|
interface PipelineProviderSettings {
|
|
3
3
|
/**
|
|
4
|
-
* Whether to create builds when branches are pushed.
|
|
4
|
+
* Whether to create builds when branches are pushed. Defaults to `true` when `triggerMode` is set to `code`.
|
|
5
5
|
*/
|
|
6
6
|
buildBranches: boolean;
|
|
7
7
|
/**
|
|
@@ -17,7 +17,7 @@ export declare namespace Pipeline {
|
|
|
17
17
|
*/
|
|
18
18
|
buildPullRequestReadyForReview: boolean;
|
|
19
19
|
/**
|
|
20
|
-
* Whether to create builds for commits that are part of a pull request.
|
|
20
|
+
* Whether to create builds for commits that are part of a pull request. Defaults to `true` when `triggerMode` is set to `code`.
|
|
21
21
|
*/
|
|
22
22
|
buildPullRequests: boolean;
|
|
23
23
|
/**
|
|
@@ -45,7 +45,7 @@ export declare namespace Pipeline {
|
|
|
45
45
|
*/
|
|
46
46
|
publishBlockedAsPending: boolean;
|
|
47
47
|
/**
|
|
48
|
-
* Whether to update the status of commits in Bitbucket or GitHub.
|
|
48
|
+
* Whether to update the status of commits in Bitbucket or GitHub. Defaults to `true` when `triggerMode` is set to `code`.
|
|
49
49
|
*/
|
|
50
50
|
publishCommitStatus: boolean;
|
|
51
51
|
/**
|
|
@@ -69,7 +69,7 @@ export declare namespace Pipeline {
|
|
|
69
69
|
*/
|
|
70
70
|
skipBuildsForExistingCommits: boolean;
|
|
71
71
|
/**
|
|
72
|
-
* Whether to skip creating a new build for a pull request if an existing build for the commit and branch already exists.
|
|
72
|
+
* Whether to skip creating a new build for a pull request if an existing build for the commit and branch already exists. Defaults to `true` when `triggerMode` is set to `code`.
|
|
73
73
|
*/
|
|
74
74
|
skipPullRequestBuildsForExistingCommits: boolean;
|
|
75
75
|
/**
|
|
@@ -80,6 +80,7 @@ export declare namespace Pipeline {
|
|
|
80
80
|
* - `none` will not create any builds based on GitHub activity.
|
|
81
81
|
*
|
|
82
82
|
* > `triggerMode` is only valid if the pipeline uses a GitHub repository.
|
|
83
|
+
* > If not set, the default value is `code` and other provider settings defaults are applied.
|
|
83
84
|
*/
|
|
84
85
|
triggerMode: string;
|
|
85
86
|
}
|