Skip to content

Commit f64b304

Browse files
Merge branch 'main' into feature/zephyr_vsworkbench
2 parents f57cf9d + c4a5879 commit f64b304

File tree

120 files changed

+8573
-5962
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+8573
-5962
lines changed

.github/workflows/roadmap-update.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,23 @@ jobs:
171171
console.log('Start Date field not found');
172172
}
173173
} else if (labelName === 'publish') {
174-
const endDateFieldId = await getFieldId(projectId, 'Publish Date');
175-
if (endDateFieldId) {
176-
await updateDateField(projectId, itemId, endDateFieldId, today);
174+
// Publish Date
175+
const publishDateFieldId = await getFieldId(projectId, 'Publish Date');
176+
if (publishDateFieldId) {
177+
await updateDateField(projectId, itemId, publishDateFieldId, today);
177178
console.log('Updated Publish Date to', today);
178179
} else {
179180
console.log('Publish Date field not found');
180181
}
182+
183+
// Last Reviewed Date (same as Publish Date)
184+
const lastReviewedFieldId = await getFieldId(projectId, 'Last Reviewed Date');
185+
if (lastReviewedFieldId) {
186+
await updateDateField(projectId, itemId, lastReviewedFieldId, today);
187+
console.log('Updated Last Reviewed Date to', today);
188+
} else {
189+
console.log('Last Reviewed Date field not found');
190+
}
181191
} else {
182192
console.log('No action taken for label:', labelName);
183193
}
@@ -187,4 +197,4 @@ jobs:
187197
}
188198
}
189199
190-
main();
200+
main();

0 commit comments

Comments
 (0)