github-org-manager 0.5.3__tar.gz → 0.5.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: github-org-manager
3
- Version: 0.5.3
3
+ Version: 0.5.4
4
4
  Summary: Manage a GitHub Organization, its teams, repository permissions, and more
5
5
  Home-page: https://github.com/OpenRailAssociation/github-org-manager
6
6
  License: Apache-2.0
@@ -112,7 +112,12 @@ def main():
112
112
  )
113
113
 
114
114
  # Login to GitHub with token, get GitHub organisation
115
- org.login(cfg_org.get("org_name", ""), cfg_app.get("github_token", ""))
115
+ org.login(
116
+ orgname=cfg_org.get("org_name", ""),
117
+ token=cfg_app.get("github_token", ""),
118
+ app_id=cfg_app.get("github_app_id", ""),
119
+ app_private_key=cfg_app.get("github_app_private_key", ""),
120
+ )
116
121
  # Get current rate limit
117
122
  org.ratelimit()
118
123
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  [tool.poetry]
6
6
  name = "github-org-manager"
7
- version = "0.5.3"
7
+ version = "0.5.4"
8
8
  description = "Manage a GitHub Organization, its teams, repository permissions, and more"
9
9
  authors = ["Max Mehl <max.mehl@deutschebahn.com>"]
10
10
  readme = "README.md"