Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove prow reference #436

Merged
merged 1 commit into from
Sep 19, 2024
Merged
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
11 changes: 1 addition & 10 deletions docs/contributor/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,20 +89,11 @@ The E2E test consists of four consecutive steps. If desired, you can run them in

## CI/CD

This project uses [Prow](https://docs.prow.k8s.io/docs/) and [GitHub Actions](https://docs.github.com/en/actions) as part of the development cycle.
This project uses [GitHub Actions](https://docs.github.com/en/actions) as part of the development cycle.
The aim is to verify the functional correctness of the NATS Manager.

### Prow jobs

The Prow jobs that cover code of this repository reside in [their own repository](https://github.com/kyma-project/test-infra/tree/main/prow/jobs/kyma-project/nats-manager).
Presubmit jobs run on PRs and are marked with the prefix `pull`. Postsubmit jobs run on main after a PR was merged and carry the prefix `post`.

For more information on execution details of each job, refer to their `description` field and the `command` and `args` fields.
Alternatively, you can access this information from your PR by inspecting the details to the job and viewing the Prow job `.yaml` file.

### GitHub Actions

GitHub Actions reside [within this module repository](https://github.com/kyma-project/nats-manager/tree/main/.github/workflows).
Pre- and postsubmit actions follow the same naming conventions as Prow jobs.

The [Actions overview](https://github.com/kyma-project/nats-manager/actions/), shows all the existing workflows and their execution details. Here, you can also trigger a re-run of an action.
Loading