Description
In main(), the CSV columns are defined as:
const csvColumns = ['repo', 'repo_topics', ...]
But the data object uses repository as the key
const singleRowData = { repository: ${owner}/${repo}, repoTopics: "${repoTopics.join(', ')}",..
. The header says repo but means owner/repo format — should be renamed to repository to be accurate and consistent.
Description
In main(), the CSV columns are defined as:
const csvColumns = ['repo', 'repo_topics', ...]But the data object uses repository as the key
const singleRowData = { repository: ${owner}/${repo}, repoTopics: "${repoTopics.join(', ')}",... The header says repo but means owner/repo format — should be renamed to repository to be accurate and consistent.