Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/actions/run-e2e-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ inputs:
description: "Slack webhook URL for failure notifications"
required: false
default: ""
gh-user-to-slack-user:
description: "JSON mapping of GitHub usernames to Slack user IDs"
required: false
default: "{}"

runs:
using: composite
Expand All @@ -40,5 +44,5 @@ runs:
ref: ${{ inputs.app }}/v${{ inputs.app-version }}
url: ${{ inputs.app-url }}
slack-webhook-url: ${{ inputs.slack-webhook-url }}
gh-user-to-slack-user: ${{ vars.GH_USER_TO_SLACK_USER }}
gh-user-to-slack-user: ${{ inputs.gh-user-to-slack-user }}
message-title: "Console ${{ inputs.app }} E2E tests failed on ${{ inputs.environment == 'prod' && 'production' || inputs.environment }} ${{ inputs.chain }}"
1 change: 1 addition & 0 deletions .github/workflows/console-api-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
environment: staging
chain: sandbox
slack-webhook-url: ${{ secrets.FAILED_E2E_TESTS_SLACK_WEBHOOK_URL }}
gh-user-to-slack-user: ${{ vars.GH_USER_TO_SLACK_USER }}

deploy-prod-mainnet:
permissions:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/provider-proxy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
environment: staging
chain: sandbox
slack-webhook-url: ${{ secrets.FAILED_E2E_TESTS_SLACK_WEBHOOK_URL }}
gh-user-to-slack-user: ${{ vars.GH_USER_TO_SLACK_USER }}

test-beta-mainnet:
permissions:
Expand All @@ -102,6 +103,7 @@ jobs:
environment: staging
chain: mainnet
slack-webhook-url: ${{ secrets.FAILED_E2E_TESTS_SLACK_WEBHOOK_URL }}
gh-user-to-slack-user: ${{ vars.GH_USER_TO_SLACK_USER }}

deploy-prod-mainnet:
permissions:
Expand Down Expand Up @@ -159,3 +161,4 @@ jobs:
environment: prod
chain: sandbox
slack-webhook-url: ${{ secrets.FAILED_E2E_TESTS_SLACK_WEBHOOK_URL }}
gh-user-to-slack-user: ${{ vars.GH_USER_TO_SLACK_USER }}
Loading