summaryrefslogtreecommitdiff
path: root/scripts/gh-list.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gh-list.py')
-rw-r--r--scripts/gh-list.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/gh-list.py b/scripts/gh-list.py
new file mode 100644
index 0000000..a2e7955
--- /dev/null
+++ b/scripts/gh-list.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+
+from gh import gh, pr
+import os
+
+tok = os.getenv('GITHUB_TOKEN')
+
+draft = [r for r in gh('releases') if r['draft']][0]
+
+for a in draft['assets']:
+ print(a['browser_download_url'])