Browse Source

Merge pull request #482 from external-secrets/chore/fix-ok-test-report

Assume check is not array
paul-the-alien[bot] 4 years ago
parent
commit
7d871cf481
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/e2e.yml

+ 1 - 1
.github/workflows/e2e.yml

@@ -175,7 +175,7 @@ jobs:
 
           const { data: result } = await github.checks.update({
             ...context.repo,
-            check_run_id: check[0].id,
+            check_run_id: check.id,
             status: 'completed',
             conclusion: process.env.conclusion
           });