Skip to content

Commit

Permalink
Update workflow docs (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekMichali authored Feb 15, 2024
1 parent 73976c3 commit a13ab8e
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions docs/contributor/04-10-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,51 @@ See [BTP Manager Release Pipeline](03-10-release.md) to learn more about the rel

## E2E Tests Workflow

This workflow is triggered by pull requests (PRs) on the `main` branch. It uses the DEV artifact registry, tags the binary image and OCI module image with the PR number, and calls the reusable [workflow](/.github/workflows/run-e2e-tests-reusable.yaml).
This workflow uses the DEV artifact registry, tags the binary image and OCI module image with the PR number, and calls the reusable [workflow](/.github/workflows/run-e2e-tests-reusable.yaml). It is triggered by pull requests (PRs) on the `main` branch that change at least one of the following:
- `/.github` directory content
- `/api` directory content
- `/cmd` directory content
- `/config` directory content
- `/controllers` directory content
- `/deployments` directory content
- `/examples` directory conent
- `/hack` directory conent
- `/internal` directory conent
- `/module-chart` directory conent
- `/module-resources` directory conent
- `/scripts` directory conent
- `config.yaml` file
- `Dockerfile` file
- `go.mod` file
- `go.sum` file
- `main.go` file
- `Makefile` file
- any `*.go` file
- any `*.sh` file

## Unit Tests Workflow

This workflow is triggered by PRs on the `main` branch. Then it calls the reusable [workflow](/.github/workflows/run-unit-tests-reusable.yaml).
This workflow calls the reusable [workflow](/.github/workflows/run-unit-tests-reusable.yaml). It is triggered by PRs on the `main` branch that change at least one of the following:
- `/.github` directory content
- `/api` directory content
- `/cmd` directory content
- `/config` directory content
- `/controllers` directory content
- `/deployments` directory content
- `/examples` directory conent
- `/hack` directory conent
- `/internal` directory conent
- `/module-chart` directory conent
- `/module-resources` directory conent
- `/scripts` directory conent
- `config.yaml` file
- `Dockerfile` file
- `go.mod` file
- `go.sum` file
- `main.go` file
- `Makefile` file
- any `*.go` file
- any `*.sh` file

## Markdown Links Check Workflow

Expand Down

0 comments on commit a13ab8e

Please sign in to comment.