Revision 4aaf141ddb0617aedc16f3652b0feee0069bc5be authored by Leon Sorokin on 13 May 2021, 07:33:11 UTC, committed by GitHub on 13 May 2021, 07:33:11 UTC
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
1 parent 6014551
Raw File
.drone.star
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()
back to top