We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2644643 commit 6fca345Copy full SHA for 6fca345
src/Subscriber/AutoUpdateTitleWithLabelSubscriber.php
@@ -51,7 +51,7 @@ public function onPullRequest(GitHubEvent $event)
51
$lock = $this->lockFactory->createLock($repository->getFullName().'#'.$number);
52
$lock->acquire(true); // blocking. Lock will be released at __destruct
53
54
- // Fetch the current PR just to make sure it has not changed
+ // Fetch the current PR just to make sure we are working with all available information
55
$githubPullRequest = $this->pullRequestApi->show($repository, $number);
56
$originalTitle = $prTitle = trim($githubPullRequest['title']);
57
$validLabels = [];
0 commit comments