Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netlify/functions/batchUpdateMeetingSummariesArray.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function commitSummariesToGitHub(allSummaries) {

for (const year in allSummaries) {
const yearSummaries = allSummaries[year];
const path = `Data/Meeting-Summaries/${year}/meeting-summaries-array.json`;
const path = `Data/Snet-Ambassador-Program/Meeting-Summaries/${year}/meeting-summaries-array.json`;

let currentSHA = null;
try {
Expand Down
2 changes: 1 addition & 1 deletion netlify/functions/batchUpdateMeetingSummariesById.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function commitSummariesToGitHub(allSummaries) {

for (const year in allSummaries) {
const yearSummaries = allSummaries[year];
const path = `Data/Meeting-Summaries/${year}/meeting-summaries-by-id.json`;
const path = `Data/Snet-Ambassador-Program/Meeting-Summaries/${year}/meeting-summaries-by-id.json`;

let currentSHA = null;
try {
Expand Down
2 changes: 1 addition & 1 deletion netlify/functions/singleCallUpdateMeetingSummariesArray.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const handler = async (event, context) => {

for (const year in summariesByYear) {
const yearSummaries = summariesByYear[year];
const path = `Data/Meeting-Summaries/${year}/meeting-summaries-array.json`;
const path = `Data/Snet-Ambassador-Program/Meeting-Summaries/${year}/meeting-summaries-array.json`;

// Get the current SHA of the file
let currentSHA = null;
Expand Down