Skip to content
Open
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
33 changes: 31 additions & 2 deletions fedora-ci/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,34 @@ sidebar_position: 3
Fedora CI is now enabled by default for all Fedora dist-git repositories with a global default configuration.

If you need to opt out, you can request your repository to be added to the
[`disabled_projects_for_fedora_ci`](https://github.com/packit/deployment/blob/main/secrets/packit/prod/packit-service.yaml.j2)
list by submitting a [pull request](https://github.com/packit/deployment/pulls).
`fedora_ci.disabled_projects` list in the
[deployment configuration](https://github.com/packit/deployment/blob/main/secrets/packit/prod/packit-service.yaml.j2)
by submitting a [pull request](https://github.com/packit/deployment/pulls).

## Opting out of ELN

Packages with high PR traffic and long build times may want to skip ELN scratch builds and tests.
To opt out, open a [pull request](https://github.com/packit/deployment/pulls) adding your project URL
to `fedora_ci.disabled_projects_for_eln` in the
[deployment configuration](https://github.com/packit/deployment/blob/main/secrets/packit/prod/packit-service.yaml.j2):

```yaml
fedora_ci:
disabled_projects_for_eln:
- https://src.fedoraproject.org/rpms/your-package
```
The project will still run regular Fedora CI scratch builds and tests, only ELN will be skipped.
## Opting out of Log Detective
[Log Detective](https://log-detective.com/) analyzes failed Koji build logs to help identify the root cause.
To opt out of this analysis for your project, open a [pull request](https://github.com/packit/deployment/pulls)
adding your project URL to `fedora_ci.disabled_projects_for_logdetective` in the
[deployment configuration](https://github.com/packit/deployment/blob/main/secrets/packit/prod/packit-service.yaml.j2):

```yaml
fedora_ci:
disabled_projects_for_logdetective:
- https://src.fedoraproject.org/rpms/your-package
```
Comment on lines +28 to +39
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's omit this before the feature is available in prod and add the docs once we transition

Loading