Skip to content

Commit e128a11

Browse files
committed
Update plugin-artifact-for-pr.yml
1 parent 43b688d commit e128a11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/plugin-artifact-for-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
const runId = context.runId;
4040
const artifactUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${runId}`;
4141
const slug = process.env.PLUGIN_SLUG;
42-
const body = `ℹ️ [Download the latest ${slug} plugin artifact from this workflow run](${artifactUrl})\n\n(See the 'Artifacts' section at the bottom).`;
42+
const body = `ℹ️ [Download the latest ${slug} plugin zip from this PR](${artifactUrl})\n\n<sub>(See the 'Artifacts' section at the bottom)</sub>`;
4343
4444
// Find existing comment from this bot
4545
const comments = await github.rest.issues.listComments({
@@ -51,7 +51,7 @@ jobs:
5151
const botComment = comments.data.find(comment =>
5252
comment.user.type === 'Bot' &&
5353
comment.user.login === 'github-actions[bot]' &&
54-
comment.body.includes(`Download the latest ${slug} plugin artifact`)
54+
comment.body.includes(`Download the latest ${slug} plugin zip for this PR`)
5555
);
5656
5757
if (botComment) {

0 commit comments

Comments
 (0)