Skip to content

Instantly share code, notes, and snippets.

View amureki's full-sized avatar
🫠

Rust Saiargaliev amureki

🫠
View GitHub Profile
@codingjoe
codingjoe / Code.gs
Last active January 7, 2025 14:52
Export GitHub Project Board to Google Sheets
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')