Skip to content

Commit

Permalink
Update nightly workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Sep 26, 2024
1 parent 23932f1 commit 66a49de
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/run-nightly-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,27 @@ on:
# Run every night at midnight UTC (0:00 AM)
- cron: '0 0 * * *'
workflow_dispatch:
inputs:
chainlink_version:
description: 'Enter Chainlink version to use for the tests. By default develop'
required: false
type: string
default: develop
slack_notification_after_tests:
description: 'Notify on Slack after tests'
required: false
type: boolean
default: true

jobs:
call-run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
chainlink_version: develop
chainlink_version: inputs.chainlink_version
test_path: .github/e2e-tests.yml
test_trigger: Nightly E2E Tests
slack_notification_after_tests: true
slack_notification_after_tests: ${{ inputs.slack_notification_after_tests }}
slack_notification_after_tests_channel_id: "#team-test-tooling-internal"
slack_notification_after_tests_name: Nightly E2E Tests
secrets:
Expand Down

0 comments on commit 66a49de

Please sign in to comment.