Skip to content

Commit 58ccf73

Browse files
authored
Merge branch 'main' into relative-taskref-resolution
2 parents be236ba + c6fdb38 commit 58ccf73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.tekton/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ spec:
137137
# Check pull request title for conventional commit format
138138
pull_request_title="{{ body.pull_request.title }}"
139139
pr_title_failed=false
140-
if [[ -n "$pull_request_title" ]] && ! echo "$pull_request_title" | grep -E -q "${conv_regexp}"; then
140+
if [[ -n "$pull_request_title" ]] && [[ "$pull_request_title" != *MIRRORED* ]] && ! echo "$pull_request_title" | grep -E -q "${conv_regexp}"; then
141141
echo "ERROR: Pull request title does not follow conventional commit format:"
142142
echo " Title: $pull_request_title"
143143
pr_title_failed=true

docs/content/docs/guide/repositorycrd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ while the rest will be queued.
174174
Pipelines-as-Code now accommodates [Kueue](https://kueue.sigs.k8s.io/) as an alternative, Kubernetes-native solution for queuing PipelineRun.
175175
To get started, you can deploy the experimental integration provided by the [konflux-ci/tekton-kueue](https://github.com/konflux-ci/tekton-kueue) project. This allows you to schedule PipelineRuns through Kueue's queuing mechanism.
176176

177-
Note: The [konflux-ci/tekton-kueue](https://github.com/konflux-ci/tekton-kueue) project and the Pipelines-as-Code integration is only intended for testing
177+
Note: The [konflux-ci/tekton-kueue](https://github.com/konflux-ci/tekton-kueue) project and the Pipelines-as-Code integration is only intended for testing.
178178
It is only meant for experimentation and should not be used in production environments.
179179

180180
## Scoping GitHub token to a list of private and public repositories within and outside namespaces

0 commit comments

Comments
 (0)