Skip to content

Instantly share code, notes, and snippets.

View ranjiniganeshan's full-sized avatar

Ranjini Ganeshan ranjiniganeshan

View GitHub Profile
from github import Github
from prettytable import PrettyTable
# or using an access token
token = input("Enter the Github token: ")
g = Github(token)
org = input("Enter the name of the Organisation: ")
c = PrettyTable()
c.field_names = ["Org Name", "Repo Name", "Wikis", "Issues", "Projects", "Merge Commits", "Rebase merging","Branch Name", "Protection", "checks", "Reviews", "stale_reviews" ]
@ranjiniganeshan
ranjiniganeshan / docker-ci-tool-stack.sh
Created January 24, 2018 16:12 — forked from marcelbirkner/docker-ci-tool-stack.sh
Getting started with docker CI tool stack
git clone git@github.com:marcelbirkner/docker-ci-tool-stack.git
cd docker-ci-tool-stack
docker-compose up
pipeline {
// run on jenkins nodes tha has java 8 label
agent { label 'java8' }
// global env variables
environment {
EMAIL_RECIPIENTS = 'mahmoud.romeh@test.com'
}
stages {
stage('Build with unit testing') {