mirror of
https://github.com/actions/checkout.git
synced 2025-04-22 16:06:35 +02:00
Add Ref and Commit outputs (#1180)
Signed-off-by: Luca Comellini <luca.com@gmail.com>
This commit is contained in:
parent
2d7d9f7ff5
commit
b684943689
5 changed files with 45 additions and 2 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue