From 55e2ac610e0e99d7c358469c0fc075745e723948 Mon Sep 17 00:00:00 2001 From: Hiroshi Nishio <4620828+hiroshinishio@users.noreply.github.com> Date: Sat, 6 Jul 2024 00:00:28 +0900 Subject: [PATCH] Fix ERROR tests/services/stripe/test_stripe.py - ValueError: Environment variable GH_APP_USER_ID not set. --- .github/workflows/stage-pytest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stage-pytest.yml b/.github/workflows/stage-pytest.yml index 9fbca071..8fac370e 100644 --- a/.github/workflows/stage-pytest.yml +++ b/.github/workflows/stage-pytest.yml @@ -29,6 +29,8 @@ jobs: - name: Run pytest env: GH_APP_ID: ${{ secrets.STAGE_GH_APP_ID }} + GH_APP_USER_ID: ${{ secrets.GH_APP_USER_ID }} + GH_APP_USER_NAME: ${{ secrets.GH_APP_USER_NAME }} GH_PRIVATE_KEY: ${{ secrets.STAGE_GH_PRIVATE_KEY }} GH_WEBHOOK_SECRET: ${{ secrets.STAGE_GH_WEBHOOK_SECRET }}