This file contains hidden or 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
function updateData () { | |
/* Fetch project cards from GitHub project and insert into Google Sheet. */ | |
const scriptProperties = PropertiesService.getScriptProperties() | |
const spreadsheet = SpreadsheetApp.getActive() | |
const sheetName = scriptProperties.getProperty('SHEET_NAME') | |
const sheet = spreadsheet.getSheetByName(sheetName) | |
const githubApiUrl = 'https://api.github.com/graphql' | |
const githubAccessToken = scriptProperties.getProperty('GITHUB_ACCESS_TOKEN') | |
const githubOrg = scriptProperties.getProperty('GITHUB_ORG') |