|
@@ -1355,7 +1355,8 @@ function getSource(settings) {
|
|
|
// Get commit information
|
|
|
const commitInfo = yield git.log1();
|
|
|
// Log commit sha
|
|
|
- yield git.log1("--format='%H'");
|
|
|
+ const commitSHA = yield git.log1('--format=%H');
|
|
|
+ core.setOutput('commit', commitSHA.trim());
|
|
|
// Check for incorrect pull request merge commit
|
|
|
yield refHelper.checkCommitInfo(settings.authToken, commitInfo, settings.repositoryOwner, settings.repositoryName, settings.ref, settings.commit, settings.githubServerUrl);
|
|
|
}
|
|
@@ -1897,6 +1898,7 @@ function run() {
|
|
|
coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json'));
|
|
|
// Get sources
|
|
|
yield gitSourceProvider.getSource(sourceSettings);
|
|
|
+ core.setOutput('ref', sourceSettings.ref);
|
|
|
}
|
|
|
finally {
|
|
|
// Unregister problem matcher
|