You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm assuming this is because servant-github-webhook aims to support github >= 0.15. Would it be possible to support these new event types? I imagine this could be done in a couple ways:
Bump the min bound on github to 0.22 (I believe that's the latest version that adds new event types)
Use -XCPP to conditionally include the instances, e.g.
#if MIN_VERSION_github(0,22)
instanceReflect 'WebhookTeamEvent where
reflect _ =WebhookTeamEvent#endif
For the moment I'm using a patched version of servant-github-webhook in my project to include these instances.
The text was updated successfully, but these errors were encountered:
I noticed the
Reflect
typeclass is missing instances for the new event types from thegithub
library.Missing instances
I'm assuming this is because
servant-github-webhook
aims to supportgithub >= 0.15
. Would it be possible to support these new event types? I imagine this could be done in a couple ways:Bump the min bound on
github
to0.22
(I believe that's the latest version that adds new event types)Use
-XCPP
to conditionally include the instances, e.g.For the moment I'm using a patched version of
servant-github-webhook
in my project to include these instances.The text was updated successfully, but these errors were encountered: