-
Notifications
You must be signed in to change notification settings - Fork 7
Adjusted membership workflows to account for designers #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Terraform plan in terraform Plan: 2 to add, 0 to change, 0 to destroy.Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# github_team.org_designers_team will be created
+ resource "github_team" "org_designers_team" {
+ create_default_maintainer = false
+ description = "Django Commons designers"
+ etag = (known after apply)
+ id = (known after apply)
+ members_count = (known after apply)
+ name = "Designers"
+ node_id = (known after apply)
+ parent_team_read_id = (known after apply)
+ parent_team_read_slug = (known after apply)
+ privacy = "closed"
+ slug = (known after apply)
}
# github_team_members.org_designers_team_members will be created
+ resource "github_team_members" "org_designers_team_members" {
+ id = (known after apply)
+ team_id = (known after apply)
+ members {
+ role = "member"
+ username = "SmitK"
}
+ members {
+ role = "member"
+ username = "akshayvinchurkar"
}
+ members {
+ role = "member"
+ username = "mzemlickis"
}
+ members {
+ role = "member"
+ username = "viscofuse"
}
}
Plan: 2 to add, 0 to change, 0 to destroy. 📝 Plan generated in Plan org changes and list them in a PR #142 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I think there's a bug in the add designer step of the GHA, but I could be wrong.
34de43a
to
fe07645
Compare
9cb1278
to
9f7c85b
Compare
designers
variable inorg.tfvars
add_member.py
takesteam_name
so a member can be added to both members list and designers list.