We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4e801 commit 372801eCopy full SHA for 372801e
.github/workflows/last-reviewed-cron.yml
@@ -198,7 +198,8 @@ jobs:
198
const prNumber = item.content.number;
199
const repoName = item.content.repository.name;
200
201
- let lastTwoSegments = pickLastTwoSegments(item.content.bodyText) || pickLastTwoSegments(item.content.url) || '(no-path)';
+ const publishedUrl = publishedUrlFieldId ? getText(item, publishedUrlFieldId) : null;
202
+ const lastTwoSegments = lastTwoFromUrl(publishedUrl) || '(no-published-url)';
203
204
// Done -> Maintenance: LRD older/equal than 6 months ago
205
if (status === STATUS_DONE && toDate(lrd) <= toDate(sixMonthsAgoISO)) {
0 commit comments