diff options
author | nodiscc <nodiscc@gmail.com> | 2019-06-03 16:49:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 16:49:55 +0000 |
commit | 16393ed577d6bdb44ebe7ba221b140d396651308 (patch) | |
tree | 7050f6af6b358ed56f2a3ad1365eaad809e4c64c /tests/check-github-commit-dates.py | |
parent | Add gerbera (diff) | |
parent | Merge pull request #1701 from jlelse/patch-1 (diff) | |
download | awesome-selfhosted-16393ed577d6bdb44ebe7ba221b140d396651308.tar.gz awesome-selfhosted-16393ed577d6bdb44ebe7ba221b140d396651308.zip |
Merge branch 'master' into patch-1
Diffstat (limited to 'tests/check-github-commit-dates.py')
-rwxr-xr-x | tests/check-github-commit-dates.py | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/tests/check-github-commit-dates.py b/tests/check-github-commit-dates.py new file mode 100755 index 00000000..f148bac2 --- /dev/null +++ b/tests/check-github-commit-dates.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python3 + +""" A script to find github repo links and last commit dates in a markdown file + +Requirements: + - python3 github module (sudo apt install python3-github on Debian) + - A personal access token (https://github.com/settings/tokens) + +Usage: + - Run awesome_bot --allow-redirect -f README.md beforehand to detect any error(4xx, 5xx) that would + cause the script to abort + - Github API calls are limited to 5000 requests/hour https://developer.github.com/v3/#rate-limiting + - Put the token in your environment variables: + export GITHUB_TOKEN=18c45f8d8d556492d1d877998a5b311b368a76e4 + - The output is unsorted, just pipe it through 'sort' or paste it in your editor and sort from there + - Put the script in your crontab or run it from time to time. It doesn't make sense to add this + script to the CI job that runs every time something is pushed. + - To detect no-commit related activity (repo metadata changes, wiki edits, ...), replace pushed_at + with updated_at + +""" + +from github import Github +import sys +import time +import re +import os + +__author__ = "nodiscc" +__copyright__ = "Copyright 2019, nodiscc" +__credits__ = ["https://github.com/kickball/awesome-selfhosted"] +__license__ = "MIT" +__version__ = "1.0" +__maintainer__ = "nodiscc" +__email__ = "nodiscc@gmail.com" +__status__ = "Production" + +############################################################################### + +access_token = os.environ['GITHUB_TOKEN'] + +""" find all URLs of the form https://github.com/owner/repo """ +with open('README.md', 'r') as readme: + data = readme.read() + project_urls = re.findall('https://github.com/[A-z]*/[A-z|0-9|\-|_|\.]+', data) + +urls = sorted(set(project_urls)) + +""" Uncomment this to debug the list of matched URLs """ +# print(str(urls)) +# exit(0) + +""" login to github API """ +g = Github(access_token) + +""" load project metadata, output last commit date and URL """ +for url in urls: + project = re.sub('https://github.com/', '', url) + repo = g.get_repo(project) + print(str(repo.pushed_at) + ' https://github.com/' + project) |