diff --git a/.github/workflows/pr-release.yml b/.github/workflows/pr-release.yml index 86c9be787258..c769cd0626d8 100644 --- a/.github/workflows/pr-release.yml +++ b/.github/workflows/pr-release.yml @@ -193,14 +193,14 @@ jobs: script: | const description = process.env.MOST_RECENT_NIGHTLY ? - process.env.MOST_RECENT_NIGHTLY : + "nightly-" + process.env.MOST_RECENT_NIGHTLY : "not branched off nightly"; await github.rest.repos.createCommitStatus({ owner: context.repo.owner, repo: context.repo.repo, sha: "${{ steps.workflow-info.outputs.sourceHeadSha }}", state: "success", - context: "Branched off:", + context: "PR branched off:", description: description, });