Skip to content

Commit 3180f7c

Browse files
zakisktheakshaypant
authored andcommitted
fix(ci): linting issue after new release
this commit fixes the linting issues after a new vale release changes the rule I guess. Signed-off-by: Zaki Shaikh <zashaikh@redhat.com>
1 parent a6035f7 commit 3180f7c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.vale.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ RedHat.TermsErrors = NO
3333
BasedOnStyles = RedHat, PaaC
3434

3535
# Ignore code surrounded by backticks or plus sign, parameters defaults, URLs, Hugo-style shortcode relref.
36-
TokenIgnores = (\x60[^\n\x60]+\x60), ([^\n]+=[^\n]*), (\+[^\n]+\+), (http[^\n]+\[), (\[[^\n]+\]), \(\{\{<\s*relref\s+\"[^\"]+\"\s*>}}\)
36+
TokenIgnores = (\x60[^\n\x60]+\x60), ([^\n]+=[^\n]*), (\+[^\n]+\+), (http[^\n]+\[), (\[[^\n]+\]), \(\{\{<\s*relref\s+\"[^\"]+\"\s*>}}\), (\(#[^\)]+\))
3737

docs/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ toc: false
44
hero_subtitle: "An opinionated CI based on Tekton."
55
---
66

7-
Pipelines as Code lets you define your CI/CD using
7+
Pipelines-as-Code lets you define your CI/CD using
88
[Tekton](https://tekton.dev) PipelineRuns and Tasks in files stored directly
99
alongside your source code. Your pipeline definitions are versioned, reviewed,
1010
and collaborated on just like your application code — bringing the full power of
1111
the Git workflow to your CI/CD pipelines. With a single pane of glass from your
12-
SCM provider (GitHub, GitLab, Bitbucket, or Forgejo), pipeline runs are
12+
SCM provider (GitHub, GitLab, Bitbucket, or Forgejo), PipelineRuns are
1313
automatically triggered for Pull Requests and Push events.
1414

1515
{{< cards >}}

docs/content/docs/guides/event-matching/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ annotations:
6868
Pipelines-as-Code runs the PipelineRun `pipeline-push-on-1.0-tags` when you push the `1.0` tag to your repository.
6969

7070
{{< callout type="warning" >}}
71-
GitHub does not send webhook events when more than three tags are pushed simultaneously (e.g., with `git push origin --tags`). To ensure pipeline runs are triggered for all tags, push them in batches of three or fewer. [See GitHub's docs here](https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#create).
71+
GitHub does not send webhook events when more than three tags are pushed simultaneously (e.g., with `git push origin --tags`). To ensure PipelineRuns are triggered for all tags, push them in batches of three or fewer. [See GitHub's docs here](https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#create).
7272
{{< /callout >}}
7373

7474
## Required annotations and parallel execution

docs/content/docs/guides/llm-analysis/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 8
55

66
{{< tech_preview >}}
77

8-
Pipelines-as-Code can analyze your CI/CD pipeline runs using Large Language Models (LLMs). An LLM is an AI service (such as OpenAI or Google Gemini) that reads pipeline logs and failure data, then posts human-readable analysis directly on your pull requests.
8+
Pipelines-as-Code can analyze your CI/CD PipelineRuns using Large Language Models (LLMs). An LLM is an AI service (such as OpenAI or Google Gemini) that reads pipeline logs and failure data, then posts human-readable analysis directly on your pull requests.
99

1010
Use this feature when you want automated root-cause analysis of pipeline failures without manually reading through logs.
1111

docs/content/docs/guides/repository-crd/comment-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ GitLab's commit status API to identify which pipelines previously succeeded,
4747
ensuring only failed pipelines are re-run. If commit statuses were never
4848
reported (for example, because both status updates failed and only a comment was
4949
posted), Pipelines-as-Code cannot determine prior results and will fail to
50-
re-run any pipelines when `/retest` unless you retest individual pipelineruns
50+
re-run any pipelines when `/retest` unless you retest individual PipelineRuns
5151
with `/test <pipeline-name>`.
5252

5353
When a status update succeeds, you can see the status in the GitLab UI in the `Pipelines` tab, as

0 commit comments

Comments
 (0)