Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 81 additions & 81 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.1",
"sass-embedded": "^1.98.0",
"sass-embedded": "^1.99.0",
"typescript": "^6.0.2",
"unified": "^11.0.5",
"unist-util-remove": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/ci-insights/setup/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ jobs:
running when no changes are made on the code

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

### Key Environment Variables

- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
- `RUN_COUNT`: Number of times to execute each test within a single job
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights
- `MERGIFY_TEST_JOB_NAME`: The job name reported to CI Insights
4 changes: 2 additions & 2 deletions src/content/docs/ci-insights/setup/jenkins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ pipeline {
running when no changes are made on the code

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

### Key Environment Variables

- `MERGIFY_TOKEN`: Application key with `ci` scope for uploading test results to CI Insights
- `RUN_COUNT`: Number of times to execute each test within a single job
- `MERGIFY_JOB_NAME`: The job name reported to CI Insights
- `MERGIFY_TEST_JOB_NAME`: The job name reported to CI Insights
6 changes: 3 additions & 3 deletions src/content/docs/ci-insights/test-frameworks/pytest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ If you’re using multiple environments (e.g. `py38`, `py39`, etc.), the plugin
will work for all of them as long as the token is set correctly.

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

In your GitHub Actions workflow:
Expand All @@ -130,11 +130,11 @@ In your GitHub Actions workflow:
- name: Run Tox Tests
env:
MERGIFY_TOKEN: ${{ secrets.MERGIFY_TOKEN }}
MERGIFY_JOB_NAME: tox-${{ matrix.python-version }}
MERGIFY_TEST_JOB_NAME: tox-${{ matrix.python-version }}
run: tox
```

:::tip
Use `MERGIFY_JOB_NAME` to make reports clearer in CI Insights, especially when
Use `MERGIFY_TEST_JOB_NAME` to make reports clearer in CI Insights, especially when
running multiple Tox environments or using a matrix.
:::
Loading