Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/54cd142a25e4adeb41a1340320374948 to your computer and use it in GitHub Desktop.
Save iaindooley/54cd142a25e4adeb41a1340320374948 to your computer and use it in GitHub Desktop.
Last updated report
function lastUpdatedReport(params,sig,original_time)
{
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0];
new Board(params).cards().each(function(card)
{
sheet.appendRow([card.link(),card.name(),card.members().first().name(),card.comments().first().when()]);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment