@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "v5.20.0",
3
+ "version": "v5.21.0-alpha.1696360520+66d5c5c0",
4
4
  "description": "A Pulumi package for creating and managing github cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
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 ref names or patterns to exclude. The condition will not pass if any of these patterns match.
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 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.
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 ref names or patterns to exclude. The condition will not pass if any of these patterns match.
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 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.
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 ref names or patterns to exclude. The condition will not pass if any of these patterns match.
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 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.
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 ref names or patterns to exclude. The condition will not pass if any of these patterns match.
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 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.
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;