Skip to content

Commit

Permalink
Update integration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Oct 31, 2024
1 parent 34745a7 commit 135c499
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@ on:
AMAZON_USERNAME:
type: string
description: Amazon username of account to run tests against
default: ${{ secrets.AMAZON_USERNAME }}
AMAZON_PASSWORD:
type: string
description: Amazon password of account to run tests against
default: ${{ secrets.AMAZON_PASSWORD }}
TO_PHONE_NUMBER:
type: string
description: Phone number to which 2FA login codes will be sent
default: ${{ secrets.TO_PHONE_NUMBER }}
schedule:
- cron: "0 17 * * 1"

Expand All @@ -25,13 +22,13 @@ jobs:

env:
FORCE_COLOR: 1
AMAZON_USERNAME: ${{ inputs.AMAZON_USERNAME }}
AMAZON_PASSWORD: ${{ inputs.AMAZON_PASSWORD }}
AMAZON_USERNAME: ${{ inputs.AMAZON_USERNAME || secrets.AMAZON_USERNAME }}
AMAZON_PASSWORD: ${{ inputs.AMAZON_PASSWORD || secrets.AMAZON_PASSWORD }}
START_INDEX_FULL_HISTORY: ${{ vars.START_INDEX_FULL_HISTORY }}
TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }}
TWILIO_PHONE_NUMBER: ${{ secrets.TWILIO_PHONE_NUMBER }}
TO_PHONE_NUMBER: ${{ inputs.TO_PHONE_NUMBER }}
TO_PHONE_NUMBER: ${{ inputs.TO_PHONE_NUMBER || secrets.TO_PHONE_NUMBER }}
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}

runs-on: ubuntu-latest
Expand Down

0 comments on commit 135c499

Please sign in to comment.