You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/docs/guide/gitops_commands.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,12 +41,12 @@ Please be aware that GitOps commands such as `/test` and others will not functio
41
41
42
42
If you want to trigger a GitOps command on a pushed commit, you can include the `GitOps` comments within your commit messages. These comments can be used to restart either all pipelines or specific ones. Here's how it works:
43
43
44
-
For restarting all pipeline runs:
44
+
For restarting all PipelineRuns:
45
45
46
46
1. Use `/retest` or `/test` within your commit message.
47
47
48
-
For restarting a specific pipeline run:
49
-
2. Use `/retest <pipelinerun-name>` or `/test <pipelinerun-name>` within your commit message. Replace `<pipelinerun-name>` with the specific name of the pipeline run you want to restart.
48
+
For restarting a specific PipelineRun:
49
+
2. Use `/retest <pipelinerun-name>` or `/test <pipelinerun-name>` within your commit message. Replace `<pipelinerun-name>` with the specific name of the PipelineRun you want to restart.
50
50
51
51
The GitOps command triggers a PipelineRun only on the latest commit (HEAD) of the branch and does not work on older commits.
Copy file name to clipboardExpand all lines: docs/content/docs/guide/matchingevents.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -283,7 +283,7 @@ If you need to do some advanced matching, `Pipelines-as-Code` supports CEL
283
283
expressions to do advanced filtering on the specific event you need to be matched.
284
284
285
285
{{< hint danger >}}
286
-
If you use the `on-cel-expression` annotation in the same pipeline run as an `on-event`, `on-target-branch`, `on-label`, `on-path-change`, or `on-path-change-ignore`
286
+
If you use the `on-cel-expression` annotation in the same PipelineRun as an `on-event`, `on-target-branch`, `on-label`, `on-path-change`, or `on-path-change-ignore`
287
287
annotation, the `on-cel-expression` annotation takes priority and Pipelines-as-Code ignores the other annotations.
@@ -121,7 +121,7 @@ right to merge commits to the default branch can change the PipelineRun and have
121
121
access to the infrastructure.
122
122
{{< /hint >}}
123
123
124
-
## Disabling all comments for Pipelineruns on GitLab MR
124
+
## Disabling all comments for PipelineRuns on GitLab MR
125
125
126
126
`comment_strategy`allows you to disable the comments on GitLab MR for a Repository
127
127
@@ -132,9 +132,9 @@ spec:
132
132
comment_strategy: "disable_all"
133
133
```
134
134
135
-
When you set the value of `comment_strategy` to `disable_all` it will not add any comment on the merge request for the start and the end of pipelinerun
135
+
When you set the value of `comment_strategy` to `disable_all` it will not add any comment on the merge request for the start and the end of PipelineRun
136
136
137
-
## Disabling all comments for Pipelineruns in GitHub Pull Requests on GitHub Webhook Setup
137
+
## Disabling all comments for PipelineRuns in GitHub Pull Requests on GitHub Webhook Setup
138
138
139
139
`comment_strategy`allows you to disable the comments on GitHub PR for a Repository
140
140
@@ -163,10 +163,10 @@ When multiple PipelineRuns match the event, they will be started in alphabetical
163
163
164
164
Example:
165
165
166
-
If you have three pipelineruns in a .tekton directory, and you create a pull
166
+
If you have three PipelineRuns in a .tekton directory, and you create a pull
167
167
request with a `concurrency_limit` of 1 in the repository configuration, then all
168
-
of the pipelineruns will be executed in alphabetical order, one after the
169
-
other. At any given time, only one pipeline run will be in the running state,
168
+
of the PipelineRuns will be executed in alphabetical order, one after the
169
+
other. At any given time, only one PipelineRun will be in the running state,
0 commit comments