Skip to content

Commit

Permalink
Add temporary vars to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell committed Nov 21, 2024
1 parent 3ffe8fa commit 0ea2909
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/manual-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
api-url:
description: 'Which database service to use to run the API against'
default: 'https://api.flagsmith.com/api/v1/'
push:

jobs:
run-e2e-tests:
Expand All @@ -21,7 +22,7 @@ jobs:
steps:
- name: Run tests
env:
E2E_TEST_AUTH_TOKEN: ${{ inputs.e2e-token }}
FLAGSMITH_API_URL: ${{ inputs.api-url }}
E2E_CONCURRENCY: ${{ inputs.e2e-concurrency }}
E2E_TEST_AUTH_TOKEN: ${{ inputs.e2e-token || 'b682133ed570d1ebf0a11fbdefda2747' }}
FLAGSMITH_API_URL: ${{ inputs.api-url || 'http://3.8.139.31:8000/api/v1/' }}
E2E_CONCURRENCY: ${{ inputs.e2e-concurrency || 1 }}
run: npm run test

0 comments on commit 0ea2909

Please sign in to comment.