Skip to content

Commit

Permalink
Manually Trigger Integration Tests (#11129)
Browse files Browse the repository at this point in the history
* First attempt

* Enable dispatch
  • Loading branch information
kalverra authored Oct 30, 2023
1 parent 6124099 commit 44bf841
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ on:
push:
tags:
- "*"
workflow_dispatch:
inputs:
liveNetwork:
description: "Run Live Testnet Tests"
required: false
type: boolean


# Only run 1 of this workflow at a time per PR
concurrency:
Expand Down Expand Up @@ -886,7 +893,7 @@ jobs:
### Start Live Testnet Section

testnet-smoke-tests-matrix:
if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) }} ## Only run live tests on new tags and nightly
if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && inputs.liveNetwork) }} ## Only run live tests on new tags, schedule, or on manual request
environment: integration
permissions:
checks: write
Expand Down

0 comments on commit 44bf841

Please sign in to comment.