mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-05 04:44:16 +02:00
Use pull_request.head.sha for submissions where appropriate
Signed-off-by: Justin Holguin <juxtin@github.com>
This commit is contained in:
parent
3bfe3a4658
commit
7c3afb922d
7 changed files with 3512 additions and 3442 deletions
20
dist/main/index.js
vendored
20
dist/main/index.js
vendored
|
@ -74151,7 +74151,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.constructJobCorrelator = exports.getJobCorrelator = exports.complete = exports.setup = void 0;
|
||||
exports.constructJobCorrelator = exports.getJobCorrelator = exports.shaFromContext = exports.complete = exports.setup = void 0;
|
||||
const core = __importStar(__nccwpck_require__(2186));
|
||||
const artifact = __importStar(__nccwpck_require__(2605));
|
||||
const github = __importStar(__nccwpck_require__(5438));
|
||||
|
@ -74169,9 +74169,11 @@ function setup(option) {
|
|||
}
|
||||
core.info('Enabling dependency graph generation');
|
||||
const jobCorrelator = getJobCorrelator();
|
||||
const sha = shaFromContext(github.context);
|
||||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true');
|
||||
core.exportVariable('GITHUB_JOB_CORRELATOR', jobCorrelator);
|
||||
core.exportVariable('GITHUB_JOB_ID', github.context.runId);
|
||||
core.exportVariable('GITHUB_SHA', sha);
|
||||
core.exportVariable('DEPENDENCY_GRAPH_REPORT_DIR', path.resolve(layout.workspaceDirectory(), 'dependency-graph-reports'));
|
||||
}
|
||||
exports.setup = setup;
|
||||
|
@ -74287,6 +74289,22 @@ function getRelativePathFromWorkspace(file) {
|
|||
const workspaceDirectory = layout.workspaceDirectory();
|
||||
return path.relative(workspaceDirectory, file);
|
||||
}
|
||||
function shaFromContext(context) {
|
||||
const pullRequestEvents = [
|
||||
'pull_request',
|
||||
'pull_request_comment',
|
||||
'pull_request_review',
|
||||
'pull_request_review_comment'
|
||||
];
|
||||
if (pullRequestEvents.includes(context.eventName)) {
|
||||
const pr = context.payload.pull_request;
|
||||
return pr.head.sha;
|
||||
}
|
||||
else {
|
||||
return context.sha;
|
||||
}
|
||||
}
|
||||
exports.shaFromContext = shaFromContext;
|
||||
function getJobCorrelator() {
|
||||
return constructJobCorrelator(github.context.workflow, github.context.job, (0, input_params_1.getJobMatrix)());
|
||||
}
|
||||
|
|
2
dist/main/index.js.map
vendored
2
dist/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
20
dist/post/index.js
vendored
20
dist/post/index.js
vendored
|
@ -74151,7 +74151,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.constructJobCorrelator = exports.getJobCorrelator = exports.complete = exports.setup = void 0;
|
||||
exports.constructJobCorrelator = exports.getJobCorrelator = exports.shaFromContext = exports.complete = exports.setup = void 0;
|
||||
const core = __importStar(__nccwpck_require__(2186));
|
||||
const artifact = __importStar(__nccwpck_require__(2605));
|
||||
const github = __importStar(__nccwpck_require__(5438));
|
||||
|
@ -74169,9 +74169,11 @@ function setup(option) {
|
|||
}
|
||||
core.info('Enabling dependency graph generation');
|
||||
const jobCorrelator = getJobCorrelator();
|
||||
const sha = shaFromContext(github.context);
|
||||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true');
|
||||
core.exportVariable('GITHUB_JOB_CORRELATOR', jobCorrelator);
|
||||
core.exportVariable('GITHUB_JOB_ID', github.context.runId);
|
||||
core.exportVariable('GITHUB_SHA', sha);
|
||||
core.exportVariable('DEPENDENCY_GRAPH_REPORT_DIR', path.resolve(layout.workspaceDirectory(), 'dependency-graph-reports'));
|
||||
}
|
||||
exports.setup = setup;
|
||||
|
@ -74287,6 +74289,22 @@ function getRelativePathFromWorkspace(file) {
|
|||
const workspaceDirectory = layout.workspaceDirectory();
|
||||
return path.relative(workspaceDirectory, file);
|
||||
}
|
||||
function shaFromContext(context) {
|
||||
const pullRequestEvents = [
|
||||
'pull_request',
|
||||
'pull_request_comment',
|
||||
'pull_request_review',
|
||||
'pull_request_review_comment'
|
||||
];
|
||||
if (pullRequestEvents.includes(context.eventName)) {
|
||||
const pr = context.payload.pull_request;
|
||||
return pr.head.sha;
|
||||
}
|
||||
else {
|
||||
return context.sha;
|
||||
}
|
||||
}
|
||||
exports.shaFromContext = shaFromContext;
|
||||
function getJobCorrelator() {
|
||||
return constructJobCorrelator(github.context.workflow, github.context.job, (0, input_params_1.getJobMatrix)());
|
||||
}
|
||||
|
|
2
dist/post/index.js.map
vendored
2
dist/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
11
package-lock.json
generated
11
package-lock.json
generated
|
@ -19,6 +19,7 @@
|
|||
"@actions/http-client": "2.1.1",
|
||||
"@actions/tool-cache": "2.0.1",
|
||||
"@octokit/rest": "19.0.13",
|
||||
"@octokit/webhooks-types": "^7.3.0",
|
||||
"string-argv": "0.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1817,6 +1818,11 @@
|
|||
"@octokit/openapi-types": "^12.11.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/webhooks-types": {
|
||||
"version": "7.3.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.0.tgz",
|
||||
"integrity": "sha512-DnZ0JdT6+me5a74H/FxHz6Pu3udTtGj5qfno9GhHWgdJoqo1EvaBWqnXRN2//XarzgfbsgkBO9Kzv7ap99mNuQ=="
|
||||
},
|
||||
"node_modules/@opentelemetry/api": {
|
||||
"version": "1.4.1",
|
||||
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz",
|
||||
|
@ -9532,6 +9538,11 @@
|
|||
"@octokit/openapi-types": "^12.11.0"
|
||||
}
|
||||
},
|
||||
"@octokit/webhooks-types": {
|
||||
"version": "7.3.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.0.tgz",
|
||||
"integrity": "sha512-DnZ0JdT6+me5a74H/FxHz6Pu3udTtGj5qfno9GhHWgdJoqo1EvaBWqnXRN2//XarzgfbsgkBO9Kzv7ap99mNuQ=="
|
||||
},
|
||||
"@opentelemetry/api": {
|
||||
"version": "1.4.1",
|
||||
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz",
|
||||
|
|
|
@ -39,11 +39,12 @@
|
|||
"@actions/http-client": "2.1.1",
|
||||
"@actions/tool-cache": "2.0.1",
|
||||
"@octokit/rest": "19.0.13",
|
||||
"@octokit/webhooks-types": "^7.3.0",
|
||||
"string-argv": "0.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.18.38",
|
||||
"@types/jest": "29.5.4",
|
||||
"@types/node": "16.18.38",
|
||||
"@types/unzipper": "0.10.6",
|
||||
"@typescript-eslint/parser": "6.4.1",
|
||||
"@vercel/ncc": "0.36.1",
|
||||
|
|
|
@ -4,6 +4,8 @@ import * as github from '@actions/github'
|
|||
import * as glob from '@actions/glob'
|
||||
import * as toolCache from '@actions/tool-cache'
|
||||
import {Octokit} from '@octokit/rest'
|
||||
import {Context} from '@actions/github/lib/context'
|
||||
import type {PullRequestEvent} from '@octokit/webhooks-types'
|
||||
|
||||
import * as path from 'path'
|
||||
import fs from 'fs'
|
||||
|
@ -20,9 +22,11 @@ export function setup(option: DependencyGraphOption): void {
|
|||
|
||||
core.info('Enabling dependency graph generation')
|
||||
const jobCorrelator = getJobCorrelator()
|
||||
const sha = shaFromContext(github.context)
|
||||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true')
|
||||
core.exportVariable('GITHUB_JOB_CORRELATOR', jobCorrelator)
|
||||
core.exportVariable('GITHUB_JOB_ID', github.context.runId)
|
||||
core.exportVariable('GITHUB_SHA', sha)
|
||||
core.exportVariable(
|
||||
'DEPENDENCY_GRAPH_REPORT_DIR',
|
||||
path.resolve(layout.workspaceDirectory(), 'dependency-graph-reports')
|
||||
|
@ -151,6 +155,24 @@ function getRelativePathFromWorkspace(file: string): string {
|
|||
return path.relative(workspaceDirectory, file)
|
||||
}
|
||||
|
||||
export function shaFromContext(context: Context): string {
|
||||
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 as PullRequestEvent).pull_request
|
||||
return pr.head.sha
|
||||
} else {
|
||||
return context.sha
|
||||
}
|
||||
}
|
||||
|
||||
export function getJobCorrelator(): string {
|
||||
return constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue