feat: add branch_protection resource (#72)
added terraform tests for the resource Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/72 Co-authored-by: Jörg Markert <joerg.markert@gmail.com> Co-committed-by: Jörg Markert <joerg.markert@gmail.com>
This commit is contained in:

committed by
techknowlogick

parent
aa450c1855
commit
a07bd291f5
68
docs/resources/repository_branch_protection.md
Normal file
68
docs/resources/repository_branch_protection.md
Normal file
@ -0,0 +1,68 @@
|
||||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "gitea_repository_branch_protection Resource - terraform-provider-gitea"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
This resource allows you to create and manage branch protections for repositories.
|
||||
---
|
||||
|
||||
# gitea_repository_branch_protection (Resource)
|
||||
|
||||
This resource allows you to create and manage branch protections for repositories.
|
||||
|
||||
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Required
|
||||
|
||||
- `name` (String) Repository name
|
||||
- `rule_name` (String) Protected Branch Name Pattern
|
||||
- `username` (String) User name or organization name
|
||||
|
||||
### Optional
|
||||
|
||||
- `approval_whitelist_teams` (List of String) Only reviews from allowlisted teams will count to the required
|
||||
approvals. Without approval allowlist, reviews from anyone with
|
||||
write access count to the required approvals.
|
||||
- `approval_whitelist_users` (List of String) Only reviews from allowlisted users will count to the required
|
||||
approvals. Without approval allowlist, reviews from anyone with
|
||||
write access count to the required approvals.
|
||||
- `block_merge_on_official_review_requests` (Boolean) Merging will not be possible when it has official
|
||||
review requests, even if there are enough approvals.
|
||||
- `block_merge_on_outdated_branch` (Boolean) Merging will not be possible when head branch is behind base branch.
|
||||
- `block_merge_on_rejected_reviews` (Boolean) Merging will not be possible when changes are
|
||||
requested by official reviewers, even if there are enough
|
||||
approvals.
|
||||
- `dismiss_stale_approvals` (Boolean) When new commits that change the content of the pull request
|
||||
are pushed to the branch, old approvals will be dismissed.
|
||||
- `enable_push` (Boolean) Anyone with write access will be allowed to push to this branch
|
||||
(but not force push), add a whitelist users or teams to limit
|
||||
access.
|
||||
- `merge_whitelist_teams` (List of String) Allow only allowlisted teams to merge pull requests into this branch.
|
||||
- `merge_whitelist_users` (List of String) Allow only allowlisted users to merge pull requests into this branch.
|
||||
- `protected_file_patterns` (String) Protected file patterns (separated using semicolon ';')
|
||||
- `push_whitelist_deploy_keys` (Boolean) Allow deploy keys with write access to push. Requires enable_push to be set to true.
|
||||
- `push_whitelist_teams` (List of String) Allowlisted teams for pushing. Requires enable_push to be set to true.
|
||||
- `push_whitelist_users` (List of String) Allowlisted users for pushing. Requires enable_push to be set to true.
|
||||
- `require_signed_commits` (Boolean) Reject pushes to this branch if they are unsigned or unverifiable.
|
||||
- `required_approvals` (Number) Allow only to merge pull request with enough positive reviews.
|
||||
- `status_check_patterns` (List of String) Enter patterns to specify which status checks must pass before
|
||||
branches can be merged into a branch that matches this rule.
|
||||
Each line specifies a pattern. Patterns cannot be empty.
|
||||
- `unprotected_file_patterns` (String) Unprotected file patterns (separated using semicolon ';')
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `created_at` (String) Webhook creation timestamp
|
||||
- `enable_approval_whitelist` (Boolean) True if a approval whitelist is used.
|
||||
- `enable_merge_whitelist` (Boolean) True if a merge whitelist is used.
|
||||
- `enable_push_whitelist` (Boolean) True if a push whitelist is used.
|
||||
- `enable_status_check` (Boolean) Require status checks to pass before merging. When enabled,
|
||||
commits must first be pushed to another branch, then merged
|
||||
or pushed directly to a branch that matches this rule after
|
||||
status checks have passed. If no contexts are matched, the
|
||||
last commit must be successful regardless of context
|
||||
- `id` (String) The ID of this resource.
|
||||
- `updated_at` (String) Webhook creation timestamp
|
Reference in New Issue
Block a user