Skip to content

Commit

Permalink
Hotfix to mitigate borked Linear API
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed May 23, 2024
1 parent f74e249 commit eedf6ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/purple-coats-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"github-to-linear": patch
---

Mitigate broken Linear issue search API by limiting number of issues to 5 to aovid overloading the GitHub UI
3 changes: 2 additions & 1 deletion extension/scripts/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ async function fetchExistingIssues(currentIssue) {
${issues.map(makeFilterBlock).join('\n')}
]
},
includeArchived: true
includeArchived: true,
first: 5
) {
nodes {
url
Expand Down

0 comments on commit eedf6ea

Please sign in to comment.