Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created August 16, 2020 11:38
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/7e28a43ec46a2050fd497e52f44ed57e to your computer and use it in GitHub Desktop.
Save iaindooley/7e28a43ec46a2050fd497e52f44ed57e to your computer and use it in GitHub Desktop.
Board reporting
function boardReporting(board,signature,original_time)
{
var ss = SpreadsheetApp.getActiveSpreadsheet();
new Board(board).lists().each(function(list)
{
var sheet = ss.insertSheet(list.name());
list.cards().each(function(card)
{
sheet.appendRow([card.link(),Trellinator.now(),card.name(),card.labels().asArray().join(",")]);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment