mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
368edd8ecc
* Enterprise changes to the Drone pipelines This is basically a no-op in this repository, except for the fact that the grafanabot personal access token will now be fetched from Vault instead of repository secrets This will pave the way for us to fetch all secrets from Vault * Update star files from enterprise * Add missingn newline
11 lines
466 B
Plaintext
11 lines
466 B
Plaintext
load('scripts/pr.star', 'pr_pipelines')
|
|
load('scripts/main.star', 'main_pipelines')
|
|
load('scripts/release.star', 'release_pipelines', 'test_release_pipelines')
|
|
load('scripts/version.star', 'version_branch_pipelines')
|
|
load('scripts/vault.star', 'secrets')
|
|
|
|
def main(ctx):
|
|
edition = 'oss'
|
|
return pr_pipelines(edition=edition) + main_pipelines(edition=edition) + release_pipelines() + \
|
|
test_release_pipelines() + version_branch_pipelines() + secrets()
|