Skip to content

Commit

Permalink
Change packer upper limit to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Oct 19, 2020
1 parent df7e4e7 commit e1b4d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/broker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class Broker {
const latestID = await github.latestID();
const packer = await new Packer({
channel: this.upstream.channel,
context: { dir: process.cwd(), from: latestID + 1, to: latestID + 15 },
context: { dir: process.cwd(), from: latestID + 1, to: latestID + 25 },
}).on();

return await github.process(packer);
Expand Down

0 comments on commit e1b4d28

Please sign in to comment.