Skip to content

Commit 36b220a

Browse files
authored
chore: Remove documentation about MERGIFY_TEST_FLAKY_DETECTION (#9613)
The goal of this change is to remove the documentation related to this variable as we've removed it. References: MRGFY-6218
1 parent e9a7b76 commit 36b220a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/content/docs/ci-insights/setup/github-actions.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ jobs:
7171

7272
- name: Run Tests
7373
env:
74-
MERGIFY_TEST_FLAKY_DETECTION: "true"
7574
MERGIFY_TOKEN: ${{ secrets.MERGIFY_TOKEN }}
7675
RUN_COUNT: 5 # Number of times to run each test
7776
run: |
@@ -147,7 +146,6 @@ jobs:
147146

148147
### Key Environment Variables
149148

150-
- `MERGIFY_TEST_FLAKY_DETECTION`: To tell CI Insights that flaky test detection is enabled
151149
- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
152150
- `RUN_COUNT`: Number of times to execute each test within a single job
153151
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights

src/content/docs/ci-insights/setup/jenkins.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Enable Mergify CI Insights and configure flaky test detection using
44
---
55

66
import { Image } from "astro:assets"
7-
import JenkinsInstallation from "../../../images/ci-insights/jenkins-installation.png"
87
import JenkinsConfiguration from "../../../images/ci-insights/jenkins-configuration.png"
8+
import JenkinsInstallation from "../../../images/ci-insights/jenkins-installation.png"
99
import JobsScreenshot from "../../../images/ci-insights/jobs.png"
1010

1111
## Enabling CI Insights for Jenkins
@@ -88,7 +88,6 @@ that runs tests twice daily with 5 parallel executions:
8888
pipeline {
8989
agent any
9090
environment {
91-
MERGIFY_TEST_FLAKY_DETECTION = "true"
9291
MERGIFY_TOKEN = credentials('MERGIFY_TOKEN')
9392
RUN_COUNT = '5'
9493
}
@@ -124,7 +123,6 @@ pipeline {
124123
pipeline {
125124
agent any
126125
environment {
127-
MERGIFY_TEST_FLAKY_DETECTION = "true"
128126
MERGIFY_TOKEN = credentials('MERGIFY_TOKEN')
129127
RUN_COUNT = '5'
130128
}
@@ -168,7 +166,6 @@ pipeline {
168166

169167
### Key Environment Variables
170168

171-
- `MERGIFY_TEST_FLAKY_DETECTION`: To tell CI Insights that flaky test detection is enabled
172169
- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
173170
- `RUN_COUNT`: Number of times to execute each test within a single job
174171
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights

0 commit comments

Comments
 (0)