Skip to content

Commit

Permalink
minor doc updates (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitrey authored Oct 14, 2024
1 parent c4733ca commit 8118e14
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/code-review-cicd-bitbucket/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ cloudshell edit bitbucket-pipelines.yml
```
### Review command and Gemini API calls

Inspect the key lines of the CLI that is used in the workflow to understand how it functions.
Review the source code for the devai cli.

In cloudshell your can open the specific file with the following command.
In cloudshell you can open the specific file with the following command.

```sh
cloudshell edit devai-cli/src/devai/commands/review.py
Expand Down
10 changes: 5 additions & 5 deletions docs/tutorials/code-review-cicd-github/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ cat ~/vertex-client-key.json

### Run GitHub Actions Workflow

Navigate to your GitHub repository in the browser and run the workflow.
Navigate to your GitHub repository in the browser and run the workflow - `GenAI For Developers`.
The workflow is configured to run on code push or manual execution.

### Review GitHub Actions Workflow output
Expand Down Expand Up @@ -128,13 +128,13 @@ Open the GitHub workflow by opening the file below.
cloudshell edit .github/workflows/devai-review.yml
```

Review the 5 tasks at the bottom of the file that use the `devai` python script you reviewed in the previous step. For example the code review step includes `devai review code -c [source to review]`
Review the tasks at the bottom of the file that use the `devai` cli.

### Review command and Gemini API calls
For example the code review step includes `devai review code -c [source to review]`

Inspect the key lines of the CLI that is used in the workflow to understand how it functions.
### Review command and Gemini API calls

In cloudshell your can open the specific file with the following command.
In cloudshell you can open the specific file with the following command.

```sh
cloudshell edit devai-cli/src/devai/commands/review.py
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/code-review-cicd-gitlab-circleci/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ Change directory and open `.circleci/config.yml` file.
cloudshell edit .circleci/config.yml
```

Review the 5 tasks at the bottom of the file that use the `devai` python script you reviewed in the previous step.
Review the tasks at the bottom of the file that use the `devai` cli.

For example the code review step includes `devai review code -c [source to review]`

### Review command and Gemini API calls

Inspect the key lines of the CLI that is used in the workflow to understand how it functions.
Review the source code for the devai cli.

In cloudshell your can open the specific file with the following command.
In cloudshell you can open the specific file with the following command.

```sh
cloudshell edit devai-cli/src/devai/commands/review.py
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/code-review-cicd-gitlab/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,15 @@ Change directory and open `.gitlab-ci.yml` file.
cloudshell edit .gitlab-ci.yml
```

Review the 5 tasks at the bottom of the file that use the `devai` python script you reviewed in the previous step.
Review the tasks at the bottom of the file that use the `devai` cli.

For example the code review step includes `devai review code -c [source to review]`

### Review command and Gemini API calls

Inspect the key lines of the CLI that is used in the workflow to understand how it functions.
Review the source code for the devai cli.

In cloudshell your can open the specific file with the following command.
In cloudshell you can open the specific file with the following command.

```sh
cloudshell edit devai-cli/src/devai/commands/review.py
Expand Down

0 comments on commit 8118e14

Please sign in to comment.