github-as-code icon indicating copy to clipboard operation
github-as-code copied to clipboard

Add support for wildcard entries

Open galargh opened this issue 3 years ago • 1 comments

It'd be cool if we could write something like: team.json:

{
  "team": {
    "*": {
      "permission": "push"
    }
  }
}

to give the team write permissions in all repos.

galargh avatar Mar 09 '22 17:03 galargh

Or in YAML:

repositories:
  *:
    teams:
      push:
        - TEAM_NAME

galargh avatar Jun 24 '22 13:06 galargh