Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7b45122
implement repository_ruleset schema
felixlut Jul 17, 2023
9e68739
start implementing reading the rules
felixlut Jul 17, 2023
aceaf42
build(deps): bump google.golang.org/grpc from 1.50.1 to 1.53.0 (#1772)
dependabot[bot] Jul 5, 2023
6bb619b
Update repository_collaborators.html.markdown (#1779)
Jeffreyhung Jul 7, 2023
5e1c708
fix: remove validation for team.permission on `github_repository_coll…
jsifuentes Jul 10, 2023
9de6e92
build(deps): bump golang.org/x/crypto from 0.10.0 to 0.11.0 (#1784)
dependabot[bot] Jul 10, 2023
4272994
Don't run go mod tidy on release (#1788)
kfcampbell Jul 11, 2023
51860e5
build(deps): bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 (#1785)
dependabot[bot] Jul 12, 2023
2c5fc3f
💅 Typo in docs (#1789)
nmacri Jul 13, 2023
3ed8d74
Attempted fix for #1657 (#1774)
yaakov-h Jul 13, 2023
5b2af04
Do not change allow_update_branch/has_downloads on archived repos (#1…
Jul 14, 2023
8b44821
feat: add ability to downgrade membership when `github_membership` is…
jsifuentes Jul 14, 2023
4fab65f
octoherd: delete pull_request_template.md
nickfloyd Jul 20, 2023
db89524
feat: add pull_request_template.md PR template
nickfloyd Jul 20, 2023
b687c5c
start implementing create
felixlut Jul 22, 2023
d0c97af
create repo ruleset now works
felixlut Jul 22, 2023
b88ffc3
successful create
felixlut Jul 22, 2023
8247774
create read and destroy all work properly now
felixlut Jul 23, 2023
ce2371c
Merge branch 'main' into rulesets
felixlut Jul 23, 2023
82e3982
remove old comment
felixlut Jul 23, 2023
b5a012a
add bypass_actor implementation todo comment
felixlut Jul 23, 2023
79f5ef1
remove old comments
felixlut Jul 23, 2023
79a7e5c
cleanup code comment
felixlut Jul 23, 2023
8a7fd5e
implement updating a repsoitory rule inplace
felixlut Jul 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions github/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ func Provider() terraform.ResourceProvider {
"github_repository_milestone": resourceGithubRepositoryMilestone(),
"github_repository_project": resourceGithubRepositoryProject(),
"github_repository_pull_request": resourceGithubRepositoryPullRequest(),
"github_repository_ruleset": resourceGithubRepositoryRuleset(),
"github_repository_tag_protection": resourceGithubRepositoryTagProtection(),
"github_repository_webhook": resourceGithubRepositoryWebhook(),
"github_team": resourceGithubTeam(),
Expand Down
Loading