Skip to content

Commit 9b70974

Browse files
committed
Clarify fork vs clone
1 parent b11787a commit 9b70974

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/how-to-github-actions-machine-learning.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ You'll need to first define how to authenticate with Azure. You can use a [servi
5252

5353
You'll need to update the CLI setup file variables to match your workspace.
5454

55-
1. In your cloned repository, go to `azureml-examples/cli/`.
55+
1. In your forked repository, go to `azureml-examples/cli/`.
5656
1. Edit `setup.sh` and update these variables in the file.
5757

5858
|Variable | Description |
@@ -65,7 +65,7 @@ You'll need to update the CLI setup file variables to match your workspace.
6565

6666
You'll use a `pipeline.yml` file to deploy your Azure Machine Learning pipeline. This is a machine learning pipeline and not a DevOps pipeline. You only need to make this update if you're using a name other than `cpu-cluster` for your computer cluster name.
6767

68-
1. In your cloned repository, go to `azureml-examples/cli/jobs/pipelines/nyc-taxi/pipeline.yml`.
68+
1. In your forked repository, go to `azureml-examples/cli/jobs/pipelines/nyc-taxi/pipeline.yml`.
6969
1. Each time you see `compute: azureml:cpu-cluster`, update the value of `cpu-cluster` with your compute cluster name. For example, if your cluster is named `my-cluster`, your new value would be `azureml:my-cluster`. There are five updates.
7070

7171
## Step 5: Run your GitHub Actions workflow
@@ -83,7 +83,7 @@ Your workflow file is made up of a trigger section and jobs:
8383

8484
### Enable your workflow
8585

86-
1. In your cloned repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
86+
1. In your forked repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
8787

8888
```yaml
8989
name: cli-jobs-pipelines-nyc-taxi-pipeline
@@ -135,7 +135,7 @@ Your workflow file is made up of a trigger section and jobs:
135135

136136
### Enable your workflow
137137

138-
1. In your cloned repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
138+
1. In your forked repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
139139

140140
```yaml
141141
name: cli-jobs-pipelines-nyc-taxi-pipeline

0 commit comments

Comments
 (0)