revision() public method

public revision ( ) : string
return string Revision revision
コード例 #1
0
ファイル: JiraLabel.php プロジェクト: shahbhavya85/bart
 /**
  * Add a comment in JIRA with the commit hash
  * @param Commit $commit The commit for which we're running the Git Hook
  * @throws GitHookException if requirement fails
  */
 public function run(Commit $commit)
 {
     $jiraIssues = $commit->jiras();
     $this->logger->debug('Found ' . count($jiraIssues) . " jira issue(s) in {$commit}");
     $revision = $commit->revision();
     if ($this->isChangeFeatureFlip($revision)) {
         foreach ($jiraIssues as $jira) {
             $this->logger->debug("Adding comment to jira {$jira}");
             $this->addLabels($jira);
         }
     }
 }
コード例 #2
0
ファイル: GerritMerge.php プロジェクト: martinsv/bart
 /**
  * Run the hook
  * @param Commit $commit Commit with Gerrit Change-Id
  * @throws GitHookException if requirement fails
  */
 public function run(Commit $commit)
 {
     try {
         $changeId = $commit->gerritChangeId();
     } catch (GitException $e) {
         $this->logger->warn("{$e->getMessage()}. Skipping commit.");
         throw new GitHookException("Couldn't get Change-Id for {$commit}", $e->getCode(), $e);
     }
     $change = new Change($changeId);
     try {
         if (!$change->exists()) {
             // This is not a warning, because some repositories do not require code review
             $this->logger->debug('Skipping change b/c it does not exist in Gerrit');
             return;
         }
         $change->markMerged($commit->revision());
         $change->comment("Git hook marking {$changeId} as merged by {$commit}");
     } catch (GerritException $e) {
         $this->logger->error("Failed to mark Gerrit reivew {$changeId} as merged", $e);
         throw new GitHookException("Failed to mark Gerrit reivew {$changeId} as merged", $e->getCode(), $e);
     }
 }