Include public/app/plugins/**/plugin.json in the BE test paths (#50756)

This commit is contained in:
Dimitris Sotirakis
2022-06-14 12:22:52 +03:00
committed by GitHub
parent 2a72dff356
commit 7566f800e6
2 changed files with 3 additions and 2 deletions

View File

@@ -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,
)