Skip to content

Instantly share code, notes, and snippets.

View BenLloydPearson's full-sized avatar

Ben Lloyd Pearson BenLloydPearson

View GitHub Profile
# -*- mode: yaml -*-
manifest:
version: 1.0
automations:
gold-star:
# Triggered for PRs that have at least 1 test, 5 or less files,
# and a branch name that includes a Jira ticket prefix
if:
- {{ files | match(regex=r/(test|spec)/) | some }}
- {{ files | length <= 5 }}
nylas.scheduler.show({
auth: {
accessToken: "ACCESS_TOKEN",
},
style: {
tintColor: '#32325d',
backgroundColor: 'white',
},
defaults: {
event: {
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nylas Scheduler</title>
<script src="https://schedule.nylas.com/schedule-editor/v1.0/schedule-editor.js" type="text/javascript"></script>
</head>
<body>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>The Nylas Scheduler</title>
<script src="https://schedule.nylas.com/schedule-editor/v1.0/schedule-editor.js" type="text/javascript"></script>
</head>
</html>

Human-readable summary of (and not a substitute for) the license

You are saying that you have the right to give us this code, which is either your own code, or code that your company allows you to publish. You want to give us this code. We may decide to use this code. You are not going to sue people who use this code, because, after all, you are giving it to an open source project! And if you include code that you didn't write, you'll tell us about it by including the open source license to such code in your contribution so we'll know about it. You are not promising that this code works well, or that you will support it, and we're OK with that.

Oath Open Source Contributor License Agreement

Thank You (defined in Section 1.2 below) for Your interest in open source projects of Oath, Inc. and its affiliates ("Oath"). In order to clarify the intellectual property license granted with Contributions from any person or entity, Oath must have a Contributor License Agreement ("CLA") on file that has been

This is an example CLA, it is not meant to be used in production.
@BenLloydPearson
BenLloydPearson / github-team.py
Created May 25, 2018 17:43 — forked from krusynth/github-team.py
Python script to add all GitHub repositories to an organization team - permission is set to push. You'll need a settings.py file with your organization name and API key. Based off of my GitHub stats script (requirements.txt here): https://github.com/krues8dr/project-migration
#!/usr/bin/python
# Exports a CSV of repo names, readme files, and the license of the project.
from __future__ import print_function
import requests
import json
import settings
from urlparse import urlparse, parse_qs
import sys