Filter push events on .fensak repo in web request
Closed this issue · 1 comments
yorinasub17 commented
Right now we are filtering the push event by repo in the asynchronous handler. This works, but is not great for the Deno KV quota since it requires a round trip with Queues.
Since all the info for filtering is available in the event data, we should do the filtering for push events only in the web request to avoid consuming kv credits. This is most important for orgs with many repos that may install the app on all repos in the org.
yorinasub17 commented
This is done in #104