mirror of
https://github.com/FranzDiebold/github-env-vars-action.git
synced 2024-11-22 08:40:59 -05:00
Fix CI_PR_SHA.
This commit is contained in:
parent
72510ef7e1
commit
0f5d8f2c0f
2 changed files with 6 additions and 4 deletions
5
dist/index.js
vendored
5
dist/index.js
vendored
|
@ -192,7 +192,7 @@ try {
|
|||
const pullRequest = github.context.payload &&
|
||||
github.context.payload.pull_request;
|
||||
if (pullRequest) {
|
||||
const prSha = github.event.pull_request.head.sha;
|
||||
const prSha = pullRequest.head.sha;
|
||||
core.exportVariable('CI_PR_SHA_SHORT', getShaShort(prSha));
|
||||
core.info(`Set CI_PR_SHA_SHORT=${process.env.CI_PR_SHA_SHORT}`);
|
||||
|
||||
|
@ -215,7 +215,8 @@ try {
|
|||
core.info(`Set CI_PR_DESCRIPTION=${process.env.CI_PR_DESCRIPTION}`);
|
||||
} else {
|
||||
core.info('No pull request. ' +
|
||||
'Cannot set "CI_PR_TITLE" and "CI_PR_DESCRIPTION".');
|
||||
'Cannot set "CI_PR_SHA_SHORT", "CI_PR_SHA", "CI_PR_NUMBER", ' +
|
||||
'"CI_PR_ID", "CI_PR_TITLE" and "CI_PR_DESCRIPTION".');
|
||||
}
|
||||
|
||||
const actor = process.env.GITHUB_ACTOR;
|
||||
|
|
5
index.js
5
index.js
|
@ -186,7 +186,7 @@ try {
|
|||
const pullRequest = github.context.payload &&
|
||||
github.context.payload.pull_request;
|
||||
if (pullRequest) {
|
||||
const prSha = github.event.pull_request.head.sha;
|
||||
const prSha = pullRequest.head.sha;
|
||||
core.exportVariable('CI_PR_SHA_SHORT', getShaShort(prSha));
|
||||
core.info(`Set CI_PR_SHA_SHORT=${process.env.CI_PR_SHA_SHORT}`);
|
||||
|
||||
|
@ -209,7 +209,8 @@ try {
|
|||
core.info(`Set CI_PR_DESCRIPTION=${process.env.CI_PR_DESCRIPTION}`);
|
||||
} else {
|
||||
core.info('No pull request. ' +
|
||||
'Cannot set "CI_PR_TITLE" and "CI_PR_DESCRIPTION".');
|
||||
'Cannot set "CI_PR_SHA_SHORT", "CI_PR_SHA", "CI_PR_NUMBER", ' +
|
||||
'"CI_PR_ID", "CI_PR_TITLE" and "CI_PR_DESCRIPTION".');
|
||||
}
|
||||
|
||||
const actor = process.env.GITHUB_ACTOR;
|
||||
|
|
Loading…
Reference in a new issue