From 83ee8a5067007d0fa970c503325662e1123ce9e8 Mon Sep 17 00:00:00 2001 From: o-webdev Date: Tue, 31 Mar 2026 22:39:45 +0100 Subject: [PATCH] test: add api-key to e2e workflow to test ingest endpoint --- .github/workflows/greenops-e2e.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/greenops-e2e.yml b/.github/workflows/greenops-e2e.yml index c1ba6c6..bb01858 100644 --- a/.github/workflows/greenops-e2e.yml +++ b/.github/workflows/greenops-e2e.yml @@ -26,15 +26,18 @@ jobs: with: plan-file: fixtures/tfplan.e2e.json github-token: ${{ secrets.GITHUB_TOKEN }} + api-key: ${{ secrets.GREENOPS_API_KEY }} - name: Run GreenOps — Azure fixture uses: ./ with: plan-file: fixtures/tfplan.azure.e2e.json github-token: ${{ secrets.GITHUB_TOKEN }} + api-key: ${{ secrets.GREENOPS_API_KEY }} - name: Run GreenOps — GCP fixture uses: ./ with: plan-file: fixtures/tfplan.gcp.e2e.json github-token: ${{ secrets.GITHUB_TOKEN }} + api-key: ${{ secrets.GREENOPS_API_KEY }}