From 20fe504b3b79fdfdf0288247e470a098b4526cfa Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Wed, 22 Feb 2023 08:01:01 -0600 Subject: [PATCH] Clarify references to Action ID and Workflow Run ID in logging --- src/deployment.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/deployment.js b/src/deployment.js index e2ce13a..4d04311 100644 --- a/src/deployment.js +++ b/src/deployment.js @@ -18,7 +18,7 @@ class Deployment { this.runTimeToken = context.runTimeToken this.buildVersion = context.buildVersion this.buildActor = context.buildActor - this.actionsId = context.workflowRun + this.actionsId = context.actionsId this.githubToken = context.githubToken this.workflowRun = context.workflowRun this.requestedDeployment = false @@ -35,6 +35,7 @@ class Deployment { try { core.info(`Actor: ${this.buildActor}`) core.info(`Action ID: ${this.actionsId}`) + core.info(`Actions Workflow Run ID: ${this.workflowRun}`) const pagesDeployEndpoint = `${this.githubApiUrl}/repos/${this.repositoryNwo}/pages/deployment` const artifactExgUrl = `${this.runTimeUrl}_apis/pipelines/workflows/${this.workflowRun}/artifacts?api-version=6.0-preview` core.info(`Artifact URL: ${artifactExgUrl}`)