Skip to content

Commit 5fb22df

Browse files
authored
Merge of #10816
2 parents 76fa63f + 205225f commit 5fb22df

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ jobs:
142142
running when no changes are made on the code
143143

144144
- **Job name**: Ensure the job name is the same as the one running tests on your pull request,
145-
allowing CI-Insights to identify them. It can be overriden with `MERGIFY_JOB_NAME` if needed.
145+
allowing CI-Insights to identify them. It can be overridden with `MERGIFY_TEST_JOB_NAME` if needed.
146146

147147
### Key Environment Variables
148148

149149
- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
150150
- `RUN_COUNT`: Number of times to execute each test within a single job
151-
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights
151+
- `MERGIFY_TEST_JOB_NAME`: The job name reported to CI Insights

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ pipeline {
162162
running when no changes are made on the code
163163

164164
- **Job name**: Ensure the job name is the same as the one running tests on your pull request,
165-
allowing CI-Insights to identify them. It can be overriden with `MERGIFY_JOB_NAME` if needed.
165+
allowing CI-Insights to identify them. It can be overridden with `MERGIFY_TEST_JOB_NAME` if needed.
166166

167167
### Key Environment Variables
168168

169169
- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
170170
- `RUN_COUNT`: Number of times to execute each test within a single job
171-
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights
171+
- `MERGIFY_TEST_JOB_NAME`: The job name reported to CI Insights

src/content/docs/ci-insights/test-frameworks/pytest.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ If you’re using multiple environments (e.g. `py38`, `py39`, etc.), the plugin
121121
will work for all of them as long as the token is set correctly.
122122

123123
If you’re running multiple Tox environments (e.g., py38, py39, etc.), we
124-
recommend setting the `MERGIFY_JOB_NAME` environment variable to identify each
124+
recommend setting the `MERGIFY_TEST_JOB_NAME` environment variable to identify each
125125
environment’s report in CI Insights:
126126

127127
In your GitHub Actions workflow:
@@ -130,11 +130,11 @@ In your GitHub Actions workflow:
130130
- name: Run Tox Tests
131131
env:
132132
MERGIFY_TOKEN: ${{ secrets.MERGIFY_TOKEN }}
133-
MERGIFY_JOB_NAME: tox-${{ matrix.python-version }}
133+
MERGIFY_TEST_JOB_NAME: tox-${{ matrix.python-version }}
134134
run: tox
135135
```
136136

137137
:::tip
138-
Use `MERGIFY_JOB_NAME` to make reports clearer in CI Insights, especially when
138+
Use `MERGIFY_TEST_JOB_NAME` to make reports clearer in CI Insights, especially when
139139
running multiple Tox environments or using a matrix.
140140
:::

0 commit comments

Comments
 (0)