Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Creating Jira task via Google Spreadsheet event

Benjamin Edwards
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 1, 2015

Hi,

We use a google form to launch some processes internally. Is it possible to use a google trigger to send a ping to our JIRA project to create a relevant task automagically? Currently we do this manually once we get an email saying X form has been submitted, but this seems like it should be scriptable.

1 answer

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 1, 2015

With a little code, yes.

Broadly, I'd go with one of two options:

  1. Send the email directly to JIRA as well as your users and handle it with a "create or comment" email handler.
  2. On the google side, write a script that turns the data in the form into a format that the JIRA REST API can handle, and post it.

Option 1 is very easy to set up, but won't do any clever processing - it will just process the body of the email into the description, set a user, project and issue type and take a stab at priority if there's one on the email.

Option 2 is far more flexible, you can translate your form into any set of fields in JIRA, but it does require a login to JIRA to do the work.

Suggest an answer

Log in or Sign up to answer