Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion github/resource_github_enterprise_team.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

func resourceGithubEnterpriseTeam() *schema.Resource {
return &schema.Resource{
Description: "Manages a GitHub enterprise team.",
Description: "Creates and manages a GitHub enterprise team.",
CreateContext: resourceGithubEnterpriseTeamCreate,
ReadContext: resourceGithubEnterpriseTeamRead,
UpdateContext: resourceGithubEnterpriseTeamUpdate,
Expand Down
2 changes: 1 addition & 1 deletion github/resource_github_enterprise_team_membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

func resourceGithubEnterpriseTeamMembership() *schema.Resource {
return &schema.Resource{
Description: "Manages membership of a user in a GitHub enterprise team.",
Description: "Creates and manages membership of a user in a GitHub enterprise team.",
CreateContext: resourceGithubEnterpriseTeamMembershipCreate,
ReadContext: resourceGithubEnterpriseTeamMembershipRead,
DeleteContext: resourceGithubEnterpriseTeamMembershipDelete,
Expand Down
2 changes: 1 addition & 1 deletion github/resource_github_enterprise_team_organizations.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

func resourceGithubEnterpriseTeamOrganizations() *schema.Resource {
return &schema.Resource{
Description: "Manages organization assignments for a GitHub enterprise team.",
Description: "Creates and manages organization assignments for a GitHub enterprise team.",
CreateContext: resourceGithubEnterpriseTeamOrganizationsCreate,
ReadContext: resourceGithubEnterpriseTeamOrganizationsRead,
UpdateContext: resourceGithubEnterpriseTeamOrganizationsUpdate,
Expand Down