Skip to content

Commit

Permalink
Merge pull request #2829 from ericpre/fix_label_run_extension_test_suite
Browse files Browse the repository at this point in the history
Fix trigger extension test suite workflow
  • Loading branch information
ericpre committed Oct 4, 2021
2 parents bcdb232 + dfafada commit a3dbd48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests_extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: Integration tests
on:
workflow_dispatch:
workflow: "*"
label:
types: [created]
pull_request_review:
types: [submitted, edited]
pull_request:
types: [labeled, ready_for_review, reopened]

jobs:
integration_test:
if: ${{ github.event.review || github.event.label.name == 'run-extension-tests' }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'run-extension-tests') }}
name: Extension_${{ matrix.EXTENSION_VERSION }}
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit a3dbd48

Please sign in to comment.