add updated files from rebuilding
This commit is contained in:
23
dist/index.js
generated
vendored
23
dist/index.js
generated
vendored
@@ -125,30 +125,11 @@ function main() {
|
||||
id: github.context.runId.toString()
|
||||
});
|
||||
snapshot.addManifest(manifest);
|
||||
snapshot.sha = core.getInput('snapshot-sha') && getShaFromContext();
|
||||
snapshot.ref = core.getInput('snapshot-ref') && github.context.ref;
|
||||
snapshot.sha = core.getInput('snapshot-sha');
|
||||
snapshot.ref = core.getInput('snapshot-ref');
|
||||
(0, dependency_submission_toolkit_1.submitSnapshot)(snapshot);
|
||||
});
|
||||
}
|
||||
function getShaFromContext() {
|
||||
const context = github.context;
|
||||
const pullRequestEvents = [
|
||||
'pull_request',
|
||||
'pull_request_comment',
|
||||
'pull_request_review',
|
||||
'pull_request_review_comment'
|
||||
// Note that pull_request_target is omitted here.
|
||||
// That event runs in the context of the base commit of the PR,
|
||||
// so the snapshot should not be associated with the head commit.
|
||||
];
|
||||
if (pullRequestEvents.includes(context.eventName)) {
|
||||
const pr = context.payload.pull_request;
|
||||
return pr.head.sha;
|
||||
}
|
||||
else {
|
||||
return context.sha;
|
||||
}
|
||||
}
|
||||
main();
|
||||
|
||||
|
||||
|
||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@@ -95,7 +95,11 @@ async function main () {
|
||||
url: 'https://github.com/actions/go-dependency-submission',
|
||||
version: '0.0.1'
|
||||
}
|
||||
} else if (detectorName === '' || detectorUrl === '' || detectorVersion === '') {
|
||||
} else if (
|
||||
detectorName === '' ||
|
||||
detectorUrl === '' ||
|
||||
detectorVersion === ''
|
||||
) {
|
||||
// if any of detectorName, detectorUrl, or detectorVersion have value, then they are all required
|
||||
throw new Error(
|
||||
"Invalid input: if any of 'detector-name', 'detector-url', or 'detector-version' have value, then thay are all required."
|
||||
|
||||
Reference in New Issue
Block a user