Skip to content

Commit 7a91794

Browse files
authored
Upgrade terraform-provider-github to v6.6.0 (#885)
This PR was generated via `$ upgrade-provider pulumi/pulumi-github --kind=all --target-bridge-version=latest --target-version=6.6.0 --allow-missing-docs=true`. --- - Updating Java Gen version from 1.3.0 to 1.4.0. - Upgrading terraform-provider-github from 6.5.0 to 6.6.0. Fixes #884
1 parent 6af94a6 commit 7a91794

25 files changed

+1479
-4
lines changed

.pulumi-java-gen.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.4.0

provider/cmd/pulumi-resource-github/bridge-metadata.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,9 @@
704704
"committer_email_pattern": {
705705
"maxItemsOne": true
706706
},
707+
"merge_queue": {
708+
"maxItemsOne": true
709+
},
707710
"pull_request": {
708711
"maxItemsOne": true
709712
},

provider/cmd/pulumi-resource-github/schema.json

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@
10991099
},
11001100
"bypassMode": {
11011101
"type": "string",
1102-
"description": "(String) When the specified actor can bypass the ruleset. pull_request means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pull_request`.\n\n\u003e Note: at the time of writing this, the following actor types correspond to the following actor IDs:\n* `OrganizationAdmin` \u003e `1`\n* `RepositoryRole` (This is the actor type, the following are the base repository roles and their associated IDs.)\n"
1102+
"description": "(String) When the specified actor can bypass the ruleset. pull_request means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pull_request`.\n\n\u003e Note: at the time of writing this, the following actor types correspond to the following actor IDs:\n\n* `OrganizationAdmin` \u003e `1`\n* `RepositoryRole` (This is the actor type, the following are the base repository roles and their associated IDs.)\n"
11031103
}
11041104
},
11051105
"type": "object",
@@ -1170,6 +1170,10 @@
11701170
"type": "boolean",
11711171
"description": "(Boolean) Only allow users with bypass permissions to delete matching refs.\n"
11721172
},
1173+
"mergeQueue": {
1174+
"$ref": "#/types/github:index/RepositoryRulesetRulesMergeQueue:RepositoryRulesetRulesMergeQueue",
1175+
"description": "(Block List, Max: 1) Merges must be performed via a merge queue.\n"
1176+
},
11731177
"nonFastForward": {
11741178
"type": "boolean",
11751179
"description": "(Boolean) Prevent users with push access from force pushing to branches.\n"
@@ -1313,6 +1317,39 @@
13131317
"pattern"
13141318
]
13151319
},
1320+
"github:index/RepositoryRulesetRulesMergeQueue:RepositoryRulesetRulesMergeQueue": {
1321+
"properties": {
1322+
"checkResponseTimeoutMinutes": {
1323+
"type": "integer",
1324+
"description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed. Defaults to `60`.\n"
1325+
},
1326+
"groupingStrategy": {
1327+
"type": "string",
1328+
"description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge. Can be one of: ALLGREEN, HEADGREEN. Defaults to `ALLGREEN`.\n"
1329+
},
1330+
"maxEntriesToBuild": {
1331+
"type": "integer",
1332+
"description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time. Defaults to `5`.\n"
1333+
},
1334+
"maxEntriesToMerge": {
1335+
"type": "integer",
1336+
"description": "The maximum number of PRs that will be merged together in a group. Defaults to `5`.\n"
1337+
},
1338+
"mergeMethod": {
1339+
"type": "string",
1340+
"description": "Method to use when merging changes from queued pull requests. Can be one of: MERGE, SQUASH, REBASE. Defaults to `MERGE`.\n"
1341+
},
1342+
"minEntriesToMerge": {
1343+
"type": "integer",
1344+
"description": "The minimum number of PRs that will be merged together in a group. Defaults to `1`.\n"
1345+
},
1346+
"minEntriesToMergeWaitMinutes": {
1347+
"type": "integer",
1348+
"description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged. Defaults to `5`.\n"
1349+
}
1350+
},
1351+
"type": "object"
1352+
},
13161353
"github:index/RepositoryRulesetRulesPullRequest:RepositoryRulesetRulesPullRequest": {
13171354
"properties": {
13181355
"dismissStaleReviewsOnPush": {

sdk/dotnet/Inputs/RepositoryRulesetBypassActorArgs.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Inputs/RepositoryRulesetBypassActorGetArgs.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Inputs/RepositoryRulesetRulesArgs.cs

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Inputs/RepositoryRulesetRulesGetArgs.cs

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Inputs/RepositoryRulesetRulesMergeQueueArgs.cs

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Inputs/RepositoryRulesetRulesMergeQueueGetArgs.cs

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Outputs/RepositoryRulesetBypassActor.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)