Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
make use of config.ci_ready_label instead of literal in PullRequest()
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Jun 28, 2018
1 parent 4d35959 commit 66ae880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion murdock.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def load(repo):
pr = PullRequest.get(data)
if pr.current_job:
continue
if not "Ready for CI build" in pr.labels:
if not config.ci_ready_label in pr.labels:
continue
state = pr.get_state()
if state == "canceled" or state == "pending":
Expand Down

0 comments on commit 66ae880

Please sign in to comment.