diff options
author | Thom May <thom@may.lt> | 2017-08-31 12:33:32 +0100 |
---|---|---|
committer | Thom May <thom@may.lt> | 2017-08-31 12:33:32 +0100 |
commit | 6af4e95903db3d3a51b5b6b29960bc4d4ff563d4 (patch) | |
tree | fd3784fd4d6557034af5c4207755ffb90deb3db3 | |
parent | 0971e0a472f70318a41b75de308269999175d772 (diff) | |
download | chef-6af4e95903db3d3a51b5b6b29960bc4d4ff563d4.tar.gz |
Ensure that our maintainers are all syncedtm/update_maintainers
Signed-off-by: Thom May <thom@may.lt>
-rw-r--r-- | .github/CODEOWNERS | 2 | ||||
-rw-r--r-- | MAINTAINERS.md | 3 | ||||
-rw-r--r-- | MAINTAINERS.toml | 6 | ||||
-rw-r--r-- | tasks/maintainers.rb | 6 |
4 files changed, 9 insertions, 8 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index f7504aed02..59c6d932f7 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @chef/maintainers +* @chef/client-maintainers diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 012e95e6de..536d9b6629 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -195,7 +195,7 @@ To mention the team, use @chef/client-freebsd ### Maintainers * [Cory Stephenson](https://github.com/Aevin1387) -* [David Aronsohn](https://github.com/tbunnyman) +* [David Aronsohn](https://github.com/OnlyHaveCans) * [Bryant Lippert](https://github.com/AgentMeerkat) ## OpenBSD @@ -230,3 +230,4 @@ To mention the team, use @chef/client-archlinux * [Lamont Granquist](https://github.com/lamont-granquist) * [Ryan Cragun](https://github.com/ryancragun) + diff --git a/MAINTAINERS.toml b/MAINTAINERS.toml index 6864249f9d..ce4f514d89 100644 --- a/MAINTAINERS.toml +++ b/MAINTAINERS.toml @@ -185,7 +185,7 @@ The specific components of Chef related to a given platform - including (but not maintainers = [ "Aevin1387", - "tBunnyMan", + "OnlyHaveCans", "AgentMeerkat" ] @@ -293,9 +293,9 @@ The specific components of Chef related to a given platform - including (but not Name = "Steven Danna" GitHub = "stevendanna" - [people.tBunnyMan] + [people.OnlyHaveCans] Name = "David Aronsohn" - GitHub = "tbunnyman" + GitHub = "OnlyHaveCans" IRC = "tBunnyMan" Twitter = "OnlyHaveCans" diff --git a/tasks/maintainers.rb b/tasks/maintainers.rb index e13d4724b0..f6385860c4 100644 --- a/tasks/maintainers.rb +++ b/tasks/maintainers.rb @@ -21,7 +21,7 @@ SOURCE = File.join(File.dirname(__FILE__), "..", "MAINTAINERS.toml") TARGET = File.join(File.dirname(__FILE__), "..", "MAINTAINERS.md") # The list of repositories that teams should own -REPOSITORIES = ["chef/chef", "chef/chef-census", "chef/chef-repo", +REPOSITORIES = ["chef/chef", "chef/chef-dk", "chef/chef-census", "chef/chef-repo", "chef/client-docs", "chef/ffi-yajl", "chef/libyajl2-gem", "chef/mixlib-authentication", "chef/mixlib-cli", "chef/mixlib-config", "chef/mixlib-install", "chef/mixlib-log", @@ -139,8 +139,8 @@ begin update_team_privacy(team) add_team_members(team, additions) remove_team_members(team, deletions) - rescue - puts "failed for #{team}" + rescue => e + puts "failed for #{team}: #{e.message}" end def update_team_privacy(team) |