@pulumiverse/buildkite 3.4.0-alpha.1778632137 → 3.4.0
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/cluster/clusterSecret.d.ts +3 -3
- package/package.json +2 -2
- package/types/input.d.ts +12 -0
- package/types/output.d.ts +12 -0
|
@@ -67,7 +67,7 @@ export declare class ClusterSecret extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly description: pulumi.Output<string | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters.
|
|
70
|
+
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters. Must not start with `buildkite` or `bk` (case-insensitive) as these prefixes are reserved.
|
|
71
71
|
*/
|
|
72
72
|
readonly key: pulumi.Output<string>;
|
|
73
73
|
/**
|
|
@@ -108,7 +108,7 @@ export interface ClusterSecretState {
|
|
|
108
108
|
*/
|
|
109
109
|
description?: pulumi.Input<string>;
|
|
110
110
|
/**
|
|
111
|
-
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters.
|
|
111
|
+
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters. Must not start with `buildkite` or `bk` (case-insensitive) as these prefixes are reserved.
|
|
112
112
|
*/
|
|
113
113
|
key?: pulumi.Input<string>;
|
|
114
114
|
/**
|
|
@@ -137,7 +137,7 @@ export interface ClusterSecretArgs {
|
|
|
137
137
|
*/
|
|
138
138
|
description?: pulumi.Input<string>;
|
|
139
139
|
/**
|
|
140
|
-
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters.
|
|
140
|
+
* The key name for the secret. Must start with a letter and only contain letters, numbers, and underscores. Maximum 255 characters. Must not start with `buildkite` or `bk` (case-insensitive) as these prefixes are reserved.
|
|
141
141
|
*/
|
|
142
142
|
key: pulumi.Input<string>;
|
|
143
143
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/buildkite",
|
|
3
|
-
"version": "3.4.0
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Buildkite resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "buildkite",
|
|
26
|
-
"version": "3.4.0
|
|
26
|
+
"version": "3.4.0",
|
|
27
27
|
"server": "github://api.github.com/pulumiverse/pulumi-buildkite"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -77,6 +77,10 @@ export declare namespace Pipeline {
|
|
|
77
77
|
* Whether to create builds when branches are pushed.
|
|
78
78
|
*/
|
|
79
79
|
buildBranches?: pulumi.Input<boolean>;
|
|
80
|
+
/**
|
|
81
|
+
* Whether to create builds when an issue comment is created on a pull request.
|
|
82
|
+
*/
|
|
83
|
+
buildIssueCommentCreated?: pulumi.Input<boolean>;
|
|
80
84
|
/**
|
|
81
85
|
* Whether to create merge queue builds for a merge queue enabled GitHub repository with required status checks
|
|
82
86
|
*/
|
|
@@ -129,6 +133,14 @@ export declare namespace Pipeline {
|
|
|
129
133
|
* Whether to prevent caching pull requests with the source branch matching the default branch.
|
|
130
134
|
*/
|
|
131
135
|
ignoreDefaultBranchPullRequests?: pulumi.Input<boolean>;
|
|
136
|
+
/**
|
|
137
|
+
* The command word used to trigger builds from issue comments (e.g. "/bk"). Only comments starting with or containing this word will trigger builds. Defaults to "/bk".
|
|
138
|
+
*/
|
|
139
|
+
issueCommentCommandWord?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* The match mode for the issue comment command word. Valid values are "exact" and "contains". Defaults to "exact".
|
|
142
|
+
*/
|
|
143
|
+
issueCommentMatchMode?: pulumi.Input<string>;
|
|
132
144
|
/**
|
|
133
145
|
* Prefix branch names for third-party fork builds to ensure they don't trigger branch conditions. For example, the main branch from some-user will become some-user:main.
|
|
134
146
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -246,6 +246,10 @@ export declare namespace Pipeline {
|
|
|
246
246
|
* Whether to create builds when branches are pushed.
|
|
247
247
|
*/
|
|
248
248
|
buildBranches: boolean;
|
|
249
|
+
/**
|
|
250
|
+
* Whether to create builds when an issue comment is created on a pull request.
|
|
251
|
+
*/
|
|
252
|
+
buildIssueCommentCreated: boolean;
|
|
249
253
|
/**
|
|
250
254
|
* Whether to create merge queue builds for a merge queue enabled GitHub repository with required status checks
|
|
251
255
|
*/
|
|
@@ -298,6 +302,14 @@ export declare namespace Pipeline {
|
|
|
298
302
|
* Whether to prevent caching pull requests with the source branch matching the default branch.
|
|
299
303
|
*/
|
|
300
304
|
ignoreDefaultBranchPullRequests: boolean;
|
|
305
|
+
/**
|
|
306
|
+
* The command word used to trigger builds from issue comments (e.g. "/bk"). Only comments starting with or containing this word will trigger builds. Defaults to "/bk".
|
|
307
|
+
*/
|
|
308
|
+
issueCommentCommandWord: string;
|
|
309
|
+
/**
|
|
310
|
+
* The match mode for the issue comment command word. Valid values are "exact" and "contains". Defaults to "exact".
|
|
311
|
+
*/
|
|
312
|
+
issueCommentMatchMode: string;
|
|
301
313
|
/**
|
|
302
314
|
* Prefix branch names for third-party fork builds to ensure they don't trigger branch conditions. For example, the main branch from some-user will become some-user:main.
|
|
303
315
|
*/
|