Skip to content

Commit

Permalink
Increase threshold for the FilterClosedAfter date/time (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
tombell authored Dec 10, 2018
1 parent 3fa37a2 commit 5242300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion issues_filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func FilterClosedAfter(issues []*github.Issue, d time.Time) []*github.Issue {

// add some leniency for difference between tagging/merging pull request
// creating the commit
time := d.Add(2 * time.Second)
time := d.Add(2 * time.Minute)

for _, issue := range issues {
if issue.ClosedAt.Before(time) {
Expand Down

0 comments on commit 5242300

Please sign in to comment.