fix: remove drone job in favor of github action

This commit is contained in:
Michal Klos
2025-08-04 10:54:37 +02:00
parent dfcabbf17d
commit 5856da5ca0
3 changed files with 2 additions and 265 deletions

View File

@@ -483,8 +483,7 @@ def main(ctx):
build_release_helpers = \
changelog() + \
docs() + \
licenseCheck(ctx) + \
deleteStaleBranches(ctx)
licenseCheck(ctx)
test_pipelines = \
codestyle(ctx) + \
@@ -3704,36 +3703,6 @@ def postgresService():
},
]
def deleteStaleBranches(ctx):
return [{
"kind": "pipeline",
"type": "docker",
"name": "delete stale branches",
"steps": [
{
"name": "delete stale branches",
"image": OC_CI_ALPINE,
"settings": {
"netrc_machine": "github.com",
"netrc_username": {
"from_secret": "github_username",
},
"netrc_password": {
"from_secret": "github_token",
},
},
"commands": [
"./scripts/delete-stale-branches.sh || true",
],
},
],
"trigger": {
"ref": [
"refs/heads/master",
],
},
}]
def trivyScan(ctx):
steps = [
{