chore: fix static check

This commit is contained in:
Robert Kaussow
2021-01-10 23:53:07 +01:00
parent 89b0b6823a
commit 6053ba4888
3 changed files with 22 additions and 22 deletions

View File

@@ -67,7 +67,7 @@ local PipelineTest = {
},
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
},
};
@@ -137,7 +137,7 @@ local PipelineBuildBinaries = {
'test',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
},
};
@@ -187,7 +187,7 @@ local PipelineBuildContainer(arch='amd64') = {
password: { from_secret: 'docker_password' },
},
when: {
ref: ['refs/heads/master', 'refs/tags/**'],
ref: ['refs/heads/main', 'refs/tags/**'],
},
depends_on: ['dryrun'],
},
@@ -205,7 +205,7 @@ local PipelineBuildContainer(arch='amd64') = {
password: { from_secret: 'quay_password' },
},
when: {
ref: ['refs/heads/master', 'refs/tags/**'],
ref: ['refs/heads/main', 'refs/tags/**'],
},
depends_on: ['dryrun'],
},
@@ -214,7 +214,7 @@ local PipelineBuildContainer(arch='amd64') = {
'test',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
},
};
@@ -309,7 +309,7 @@ local PipelineNotifications = {
'build-container-arm64',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**'],
ref: ['refs/heads/main', 'refs/tags/**'],
status: ['success', 'failure'],
},
};