From 8aed21d670c5b282ebcd2ee9740454201742a9e3 Mon Sep 17 00:00:00 2001 From: John Hill Date: Thu, 27 Jan 2022 08:41:33 -0800 Subject: [PATCH] [CI] Update github actions automation to work across forks (#4799) * Update e2e-pr.yml * Update e2e-pr.yml --- .github/workflows/e2e-pr.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e-pr.yml b/.github/workflows/e2e-pr.yml index 9ed705819a..31846e8843 100644 --- a/.github/workflows/e2e-pr.yml +++ b/.github/workflows/e2e-pr.yml @@ -15,8 +15,8 @@ jobs: script: | github.rest.issues.createComment({ issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, + owner: "nasa", + repo: "openmct", body: 'Started e2e Run. Follow along: https://github.com/nasa/openmct/actions/runs/' + context.runId }) - uses: actions/checkout@v2 @@ -37,8 +37,8 @@ jobs: script: | github.rest.issues.createComment({ issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, + owner: "nasa", + repo: "openmct", body: 'Success ✅ ! Build artifacts are here: https://github.com/nasa/openmct/actions/runs/' + context.runId }) - name: Test failure @@ -48,7 +48,7 @@ jobs: script: | github.rest.issues.createComment({ issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, + owner: "nasa", + repo: "openmct", body: 'Failure ❌ ! Build artifacts are here: https://github.com/nasa/openmct/actions/runs/' + context.runId })