Skip to content

Commit 8d47b11

Browse files
committed
fix Descriptions
1 parent 0f1db7d commit 8d47b11

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

github/resource_github_organization_ruleset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func resourceGithubOrganizationRuleset() *schema.Resource {
6565
Type: schema.TypeString,
6666
Required: true,
6767
ValidateFunc: validation.StringInSlice([]string{"always", "pull_request", "exempt"}, false),
68-
Description: "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`.",
68+
Description: "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`, `exempt`.",
6969
},
7070
},
7171
},

github/resource_github_repository_ruleset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func resourceGithubRepositoryRuleset() *schema.Resource {
7070
Type: schema.TypeString,
7171
Required: true,
7272
ValidateFunc: validation.StringInSlice([]string{"always", "pull_request", "exempt"}, false),
73-
Description: "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`.",
73+
Description: "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`, `exempt`.",
7474
},
7575
}},
7676
},

0 commit comments

Comments
 (0)