Skip to content

Commit

Permalink
[#223] Fix lint in Dangerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mosharaf13 committed Jul 6, 2023
1 parent 7e57cc5 commit 506bcda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dangerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ has_wip_title = github.pr_title.downcase.include? '[wip]'
is_draft = github.pr_draft?

if has_wip_label || has_wip_title || is_draft
return message('Skipping Danger since PR is classed as Work in Progress')
message('Skipping Danger since PR is classed as Work in Progress')
return
end

# Runs Rubocop and submit comments on modified and added files
Expand Down

0 comments on commit 506bcda

Please sign in to comment.