diff --git a/.tekton/pipeline-build.yaml b/.tekton/pipeline-build.yaml index 2316ddc..b9fd15c 100644 --- a/.tekton/pipeline-build.yaml +++ b/.tekton/pipeline-build.yaml @@ -2,8 +2,8 @@ apiVersion: tekton.dev/v1 kind: Pipeline metadata: name: pipeline-build -spec: +spec: params: - name: git-url description: Source Repository URL diff --git a/.tekton/pull_request.yaml b/.tekton/pull_request.yaml index 621df72..0532501 100644 --- a/.tekton/pull_request.yaml +++ b/.tekton/pull_request.yaml @@ -36,12 +36,12 @@ spec: value: 5d - name: tag-prefix - value: pr-{{ pull_request_number }} + value: pr-{{ pull_request_number }}- -pipelineRef: - name: pipeline-build + pipelineRef: + name: pipeline-build -workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' diff --git a/.tekton/push.yaml b/.tekton/push.yaml index a46e85a..0cbbf9b 100644 --- a/.tekton/push.yaml +++ b/.tekton/push.yaml @@ -32,10 +32,10 @@ spec: - name: dockerfile value: /Containerfile -pipelineRef: - name: pipeline-build + pipelineRef: + name: pipeline-build -workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..b4296e7 --- /dev/null +++ b/renovate.json @@ -0,0 +1,14 @@ +{ + "extends": [ + "github>konflux-ci/mintmaker//config/renovate/renovate.json" + ], + "updateNotScheduled": false, + "schedule": [ + "on Tuesday after 3am and before 10am" + ], + "ignorePaths": [ + ".pre-commit-config.yaml", + "Pipfile", + "Pipfile.lock" + ] +}