Skip to content

Commit

Permalink
remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Eun committed Sep 21, 2023
1 parent 945ea46 commit ddcbfde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/merge-with-label/worker/should_skip.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func (worker *Worker) shouldSkipBecauseOfReviews(cfg *MergeConfigV1) shouldSkipF
}
}

func (worker *Worker) shouldSkipBecauseIsNotMergeable(cfg *MergeConfigV1) shouldSkipFunc {
func (worker *Worker) shouldSkipBecauseIsNotMergeable(*MergeConfigV1) shouldSkipFunc {
return func(_ context.Context, logger *zerolog.Logger, details *github.PullRequestDetails) (shouldSkipResult, error) {
if details.IsMergeable {
return shouldSkipResult{SkipAction: false}, nil
Expand Down

0 comments on commit ddcbfde

Please sign in to comment.