Last active
January 13, 2022 17:58
-
-
Save mogsdad/1956f50b509b4f0e9ef44a6837fa52ae to your computer and use it in GitHub Desktop.
Google Apps Script for Google Spreadsheet. This onEdit function will identify Jira issue keys that are alone in an edited cell, and replace them with a HYPERLINK function with a link to your Jira installation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Jira-hyperlink from https://gist.github.com/mogsdad/1956f50b509b4f0e9ef44a6837fa52ae | |
const jiraUrl = "https://jira.example.com" // Top-level URL for our Jira instance | |
function onEdit(e) { | |
var re = /^ *[a-z][a-z0-9_]+-\d{1,6} *$/gi | |
var content = e.value; | |
if (re.test(content)) { | |
var cell = e.range; | |
cell.setFormula('HYPERLINK("'+jiraUrl+'/browse/%BUGNUM%";"%BUGNUM%")'.replace(/%BUGNUM%/g,content.toUpperCase().trim())) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is a version that handles every cell in the whole range selection rather than top-left cell: