Skip to content

Commit

Permalink
fix: list RFCs in final comment period (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmaddock authored Jan 27, 2025
1 parent 19b26f3 commit c3d2e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/remind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ async function getApiData(teamMembers: TeamMember[]) {
}

async function getRfcData(teamMembers: TeamMember[]) {
const query = `is:open is:pr label:pending-review`;
const query = `is:open is:pr label:pending-review,final-comment-period`;
const items = await octokit.paginate(octokit.search.issuesAndPullRequests, {
q: `repo:electron/rfcs ${query}`,
sort: 'created',
Expand Down

0 comments on commit c3d2e49

Please sign in to comment.