28 lines
732 B
YAML
28 lines
732 B
YAML
name: trigger-dashboard-search-e2e
|
|
# triggers the dashboard search e2e tests which runs async
|
|
# doesn't block prs, allows setting up notifications from grafana
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- public/app/features/search/**/*.ts
|
|
- public/app/features/search/**/*.tsx
|
|
- pkg/storage/**/*.go
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- public/app/features/search/**/*.ts
|
|
- public/app/features/search/**/*.tsx
|
|
- pkg/storage/**/*.go
|
|
env:
|
|
ARCH: linux-amd64
|
|
|
|
jobs:
|
|
trigger-search-e2e:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.draft == false
|
|
steps:
|
|
- name: Trigger Dashboard Search E2E
|
|
run: echo "Triggered Dashboard Search e2e..." |