@pulumi/github 5.20.0 → 5.21.0-alpha.1696360520
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
|
@@ -191,21 +191,21 @@ export interface OrganizationRulesetConditions {
|
|
|
191
191
|
}
|
|
192
192
|
export interface OrganizationRulesetConditionsRefName {
|
|
193
193
|
/**
|
|
194
|
-
* (List of String) Array of
|
|
194
|
+
* (List of String) Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
|
|
195
195
|
*/
|
|
196
196
|
excludes: pulumi.Input<pulumi.Input<string>[]>;
|
|
197
197
|
/**
|
|
198
|
-
* (List of String) Array of
|
|
198
|
+
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
199
199
|
*/
|
|
200
200
|
includes: pulumi.Input<pulumi.Input<string>[]>;
|
|
201
201
|
}
|
|
202
202
|
export interface OrganizationRulesetConditionsRepositoryName {
|
|
203
203
|
/**
|
|
204
|
-
* (List of String) Array of
|
|
204
|
+
* (List of String) Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
|
|
205
205
|
*/
|
|
206
206
|
excludes: pulumi.Input<pulumi.Input<string>[]>;
|
|
207
207
|
/**
|
|
208
|
-
* (List of String) Array of
|
|
208
|
+
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
209
209
|
*/
|
|
210
210
|
includes: pulumi.Input<pulumi.Input<string>[]>;
|
|
211
211
|
protected?: pulumi.Input<boolean>;
|
package/types/output.d.ts
CHANGED
|
@@ -839,21 +839,21 @@ export interface OrganizationRulesetConditions {
|
|
|
839
839
|
}
|
|
840
840
|
export interface OrganizationRulesetConditionsRefName {
|
|
841
841
|
/**
|
|
842
|
-
* (List of String) Array of
|
|
842
|
+
* (List of String) Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
|
|
843
843
|
*/
|
|
844
844
|
excludes: string[];
|
|
845
845
|
/**
|
|
846
|
-
* (List of String) Array of
|
|
846
|
+
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
847
847
|
*/
|
|
848
848
|
includes: string[];
|
|
849
849
|
}
|
|
850
850
|
export interface OrganizationRulesetConditionsRepositoryName {
|
|
851
851
|
/**
|
|
852
|
-
* (List of String) Array of
|
|
852
|
+
* (List of String) Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
|
|
853
853
|
*/
|
|
854
854
|
excludes: string[];
|
|
855
855
|
/**
|
|
856
|
-
* (List of String) Array of
|
|
856
|
+
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
857
857
|
*/
|
|
858
858
|
includes: string[];
|
|
859
859
|
protected?: boolean;
|