@pulumi/github 5.18.0-alpha.1695274585 → 5.18.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/package.json +1 -1
- package/types/input.d.ts +4 -4
- package/types/output.d.ts +4 -4
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -169,7 +169,7 @@ export interface OrganizationRulesetBypassActor {
|
|
|
169
169
|
/**
|
|
170
170
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
171
171
|
*/
|
|
172
|
-
bypassMode
|
|
172
|
+
bypassMode: pulumi.Input<string>;
|
|
173
173
|
}
|
|
174
174
|
export interface OrganizationRulesetConditions {
|
|
175
175
|
/**
|
|
@@ -203,9 +203,9 @@ export interface OrganizationRulesetConditionsRepositoryName {
|
|
|
203
203
|
*/
|
|
204
204
|
excludes: pulumi.Input<pulumi.Input<string>[]>;
|
|
205
205
|
/**
|
|
206
|
-
* (List of String) Array of
|
|
206
|
+
* (List of String) Array of ref names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~DEFAULT_BRANCH` to include the default branch or `~ALL` to include all branches.
|
|
207
207
|
*/
|
|
208
|
-
|
|
208
|
+
includes: pulumi.Input<pulumi.Input<string>[]>;
|
|
209
209
|
protected?: pulumi.Input<boolean>;
|
|
210
210
|
}
|
|
211
211
|
export interface OrganizationRulesetRules {
|
|
@@ -498,7 +498,7 @@ export interface RepositoryRulesetBypassActor {
|
|
|
498
498
|
/**
|
|
499
499
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
500
500
|
*/
|
|
501
|
-
bypassMode
|
|
501
|
+
bypassMode: pulumi.Input<string>;
|
|
502
502
|
}
|
|
503
503
|
export interface RepositoryRulesetConditions {
|
|
504
504
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -817,7 +817,7 @@ export interface OrganizationRulesetBypassActor {
|
|
|
817
817
|
/**
|
|
818
818
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
819
819
|
*/
|
|
820
|
-
bypassMode
|
|
820
|
+
bypassMode: string;
|
|
821
821
|
}
|
|
822
822
|
export interface OrganizationRulesetConditions {
|
|
823
823
|
/**
|
|
@@ -851,9 +851,9 @@ export interface OrganizationRulesetConditionsRepositoryName {
|
|
|
851
851
|
*/
|
|
852
852
|
excludes: string[];
|
|
853
853
|
/**
|
|
854
|
-
* (List of String) Array of
|
|
854
|
+
* (List of String) Array of ref names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~DEFAULT_BRANCH` to include the default branch or `~ALL` to include all branches.
|
|
855
855
|
*/
|
|
856
|
-
|
|
856
|
+
includes: string[];
|
|
857
857
|
protected?: boolean;
|
|
858
858
|
}
|
|
859
859
|
export interface OrganizationRulesetRules {
|
|
@@ -1141,7 +1141,7 @@ export interface RepositoryRulesetBypassActor {
|
|
|
1141
1141
|
/**
|
|
1142
1142
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
1143
1143
|
*/
|
|
1144
|
-
bypassMode
|
|
1144
|
+
bypassMode: string;
|
|
1145
1145
|
}
|
|
1146
1146
|
export interface RepositoryRulesetConditions {
|
|
1147
1147
|
/**
|