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 b2616e4 commit 65532faCopy full SHA for 65532fa
lisp/forge-github.el
@@ -271,10 +271,11 @@
271
(oset issue slug (format "#%s" .number))
272
(oset issue state
273
(pcase-exhaustive (list .stateReason .state)
274
- (`("COMPLETED" ,_) 'completed)
275
- (`("NOT_PLANNED" ,_) 'unplanned)
276
- (`(,_ "CLOSED") 'completed)
277
- (`(,_ "OPEN") 'open)))
+ ('("COMPLETED" "CLOSED") 'completed)
+ ('("NOT_PLANNED" "CLOSED") 'unplanned)
+ ('("DUPLICATE" "CLOSED") 'completed)
+ ('("REOPENED" "OPEN") 'open)
278
+ ('(nil "OPEN") 'open)))
279
(oset issue author .author.login)
280
(oset issue title .title)
281
(oset issue created .createdAt)
0 commit comments