Skip to content

Commit 4f1a276

Browse files
authored
Merge pull request #12301 from internetarchive/fix/weekly-status-bug
fix bug with weekly status bot label filtering
2 parents 4d185b8 + cdc868c commit 4f1a276

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/gh_scripts/weekly_status_report.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ function prepareSubmitterInput(pullRequests, leads) {
436436
let awaitingResponseCount = 0
437437
assignedPulls.forEach((pull) => {
438438
for (const label of pull.labels) {
439-
if (label.name === 'Needs: Response') {
439+
if (label.name === 'Needs: Submitter Input') {
440440
++awaitingResponseCount
441441
break
442442
}

0 commit comments

Comments
 (0)