Skip to content

Commit

Permalink
Update getProps.js
Browse files Browse the repository at this point in the history
updated getProps to get new custom properties
  • Loading branch information
SamLee-IBM committed Oct 30, 2024
1 parent 14d9324 commit 3b3d423
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/getProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ module.exports = async ({repoData, octokit}) => {
if (res.data[j].property_name == 'Publish') {
repoData.organization.repositories.nodes[i].publish = res.data[j].value;
}
if (res.data[j].property_name == 'Industry') {
repoData.organization.repositories.nodes[i].industry = res.data[j].value;
}
if (res.data[j].property_name == 'Technology') {
repoData.organization.repositories.nodes[i].technology = res.data[j].value;
}
}
}

Expand Down

0 comments on commit 3b3d423

Please sign in to comment.