Skip to content

Commit ec558d3

Browse files
committed
Update pull request query to only fetch OPEN states
1 parent a0de56f commit ec558d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/projects/data/GitHubRepositoryDataSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export default class GitHubProjectDataSource
176176
.map((repo, index) => {
177177
return `
178178
repo${index}: repository(owner: "${repo.owner}", name: "${repo.name}") {
179-
pullRequests(first: 100, states: [OPEN, MERGED]) {
179+
pullRequests(first: 100, states: [OPEN]) {
180180
edges {
181181
node {
182182
headRefName

0 commit comments

Comments
 (0)