This is an automated email from the ASF dual-hosted git repository.
mattmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drat.git
The following commit(s) were added to refs/heads/master by this push:
new cd86532 Add script to list repo URLs from GH enterprise.
new 6936ad4 Merge branch 'master' of github.com:apache/drat
cd86532 is described below
commit cd8653248ae87e50b9d392a1021dc5e63996d79a
Author: Chris Mattmann <[email protected]>
AuthorDate: Sun Mar 17 12:01:46 2019 -0700
Add script to list repo URLs from GH enterprise.
---
.../src/main/resources/bin/list-ghe-repos.py | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/distribution/src/main/resources/bin/list-ghe-repos.py
b/distribution/src/main/resources/bin/list-ghe-repos.py
new file mode 100755
index 0000000..9c35f32
--- /dev/null
+++ b/distribution/src/main/resources/bin/list-ghe-repos.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python3.7
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+import github3
+import sys
+
+githubent = github3.enterprise_login(
+ username=sys.argv[1],
+ password=sys.argv[2],
+ url=sys.argv[3])
+
+for d in ["2014", "2015", "2016", "2017", "2018", "2019"]:
+ dateFilter = "created:<"+d+" and created:>"+str(int(d)-1)
+ for r in githubent.search_repositories("is:public and "+dateFilter):
+ print(d+","+r.clone_url)