Wiring up a Google Form to GitHub is not that difficult with a little bit of Apps Script automation. All you need is a Google account, a GitHub account, and a web browser...
Personal access tokens provide an easy way to interact with the GitHub API without having to mess with OAuth. If you don't already have a personal access token with repo or public_repo access, visit your GitHub settings page and generate a new token.
Be sure to copy your token some place safe and keep it secure. Once generated, you will not be able to view or copy the token again.
- Create a Google Form.
- From the Responses tab, click the More icon.
- Select Choose a response destination.
- Select New spreadsheet: Creates a new spreadsheet in Google Sheets for responses.
- Click Create to create and open the sheet.
- You should have a newly created blank spreadsheet with headers automatically generated from your form.
- Click Tools > Script editor... to launch the App Script editor coding environment. This Script will be bound to your sheet, so you can listen for form submissions and fire off a new issue to your GitHub repo.
- Delete the boilerplate code in the
Code.gs
file and replace it with something similar to this:
var ghToken = "my-personal-access-token";
function onFormSubmit(e) {
var title = e.values[2] + ": " + e.values[4];
var body = "| Contact Email | Organization Name | Change Date | Change Type | Plan | Licenses | Comments |\n" +
"|---|---|---|---|---|---|---|\n" +
"| "+e.values[1]+" | "+e.values[2]+" | "+e.values[3]+" | "+e.values[4]+" | "+e.values[5]+" | "+e.values[6]+" | "+e.values[7]+" |" ;
var payload = {
"title": title,
"body": body
};
var options = {
"method": "POST",
"contentType": "application/json",
"payload": JSON.stringify(payload)
};
var response = UrlFetchApp.fetch("https://api.github.com/repos/bmcbride/my-repo/issues?access_token="+ghToken, options);
}
- The
onFormSubmit
function includes an event objecte
, which includes the form/spreadsheet fieldvalues
as a simple array with values in the same order as they appear in the spreadsheet.e.values[0]
is the first spreadsheet column (typically Timestamp). - In my example, I'm collecting information from users who wish to make license changes to a web service. I'm building a simple markdown table, which includes some of the form data in the body of my issue.
- Reference the GitHub Issues API for a full list of options for programmatically creating a new issue.
- Once we've built the
title
andbody
of the issue, we can build the HTTP request using App Script's URL Fetch Service. - Give your app script project a name and save it .
- From within the app script editor, click Resources > Current project's triggers.
- Click to add a trigger
- Run: onFormSubmit
- Events: From spreadsheet, On form submit
- Click Save and accept any authorizations to access your forms and access web services on your behalf.
- This trigger will listen to form submissions and pass the data to your function, which POSTs the new issue to your GitHub repo.
This exercise demonstrates how to utilize Google Forms as a front-end for capturing information, which can then be passed on to other services, such as GitHub, CartoDB, Fulcrum, etc.
Thanks for this, can you tell me how to have the body values in rows rather tan columns?