From 7566f800e68b2076c4e5726b04c0c44a82757cbc Mon Sep 17 00:00:00 2001 From: Dimitris Sotirakis Date: Tue, 14 Jun 2022 12:22:52 +0300 Subject: [PATCH] Include public/app/plugins/**/plugin.json in the BE test paths (#50756) --- .drone.yml | 3 ++- scripts/drone/pipelines/pr.star | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6c02cf66b77..764f8328abb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -166,6 +166,7 @@ trigger: - conf/** - go.sum - go.mod + - public/app/plugins/**/plugin.json type: docker volumes: - host: @@ -4682,6 +4683,6 @@ kind: secret name: gcp_upload_artifacts_key --- kind: signature -hmac: 5f90961f151491580770a354e6f60ceddf35557f1094ec0ee94369fe52285697 +hmac: 1327a42ff9a4cd493e256b2d795783077e344ae2f2374e7fb5b5543e534e8401 ... diff --git a/scripts/drone/pipelines/pr.star b/scripts/drone/pipelines/pr.star index bdfdabc5167..6dd02ac8747 100644 --- a/scripts/drone/pipelines/pr.star +++ b/scripts/drone/pipelines/pr.star @@ -103,7 +103,7 @@ def pr_test_backend(): test_backend_integration_step(edition="oss"), ] return pipeline( - name='pr-test-backend', edition="oss", trigger=get_pr_trigger(include_paths=['pkg/**', 'packaging/**', '.drone.yml', 'conf/**', 'go.sum', 'go.mod']), services=[], steps=init_steps + test_steps, + name='pr-test-backend', edition="oss", trigger=get_pr_trigger(include_paths=['pkg/**', 'packaging/**', '.drone.yml', 'conf/**', 'go.sum', 'go.mod', 'public/app/plugins/**/plugin.json']), services=[], steps=init_steps + test_steps, )