diff --git a/.github/workflows/test-changes.yml b/.github/workflows/test-changes.yml index 25410179..db1c1cb3 100644 --- a/.github/workflows/test-changes.yml +++ b/.github/workflows/test-changes.yml @@ -3,7 +3,30 @@ name: Test Changes -on: [push, pull_request] +on: + push: + branches: [ "master" ] + pull_request: + types: [opened, reopened, synchronize, ready_for_review, labeled] + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + tags: + description: 'Test scenario tags' + required: false + type: boolean + environment: + description: 'Environment to run tests against' + type: environment + required: true jobs: run-guard: