diff --git a/azure_devops/6-migrate.md b/azure_devops/6-migrate.md index f64ea2b..4466b6a 100644 --- a/azure_devops/6-migrate.md +++ b/azure_devops/6-migrate.md @@ -20,14 +20,14 @@ Answer the following questions before running a `migrate` command: 2. Where do you want to store the logs? - __tmp/migrate__ 3. What is the URL for the GitHub repository to add the workflow to? - - __this repository__. The URL should follow the pattern with `:owner` and `:repo` replaced with your values. The command below uses `git remote get-url` to automatically populate these values. + - __this repository__. The URL should follow the pattern with `:owner` and `:repo` replaced with your values. ### Steps 1. Run the following `migrate` command in the codespace terminal: ```bash - gh valet migrate azure-devops pipeline --pipeline-id :pipeline_id --target-url $(git remote get-url origin) --output-dir tmp/migrate + gh valet migrate azure-devops pipeline --pipeline-id :pipeline_id --target-url https://github.com/:owner/:repo --output-dir tmp/migrate ``` 2. The command will write the URL to the pull request that was created when the command succeeds. diff --git a/gitlab/6-migrate.md b/gitlab/6-migrate.md index cb96850..ba561fb 100644 --- a/gitlab/6-migrate.md +++ b/gitlab/6-migrate.md @@ -19,14 +19,14 @@ Answer the following questions before running a `migrate` command: 3. Where do you want to store the logs? - __tmp/migrate__ 4. What is the URL for the GitHub repository to add the workflow to? - - __this repository__. The URL should should follow the pattern with `:owner` and `:repo` replaced with your values. The command below uses `git remote get-url` to automatically populate these values. + - __this repository__. The URL should should follow the pattern with `:owner` and `:repo` replaced with your values. ### Steps 1. Run the following `migrate` command in the codespace terminal: ```bash - gh valet migrate gitlab --target-url $(git remote get-url origin) --output-dir tmp/migrate --namespace valet --project rails-example + gh valet migrate gitlab --target-url https://github.com/:owner/:repo --output-dir tmp/migrate --namespace valet --project rails-example ``` 2. The command will write the URL to the pull request that was created when the command succeeds. diff --git a/jenkins/6-migrate.md b/jenkins/6-migrate.md index 76907de..85a45b7 100644 --- a/jenkins/6-migrate.md +++ b/jenkins/6-migrate.md @@ -17,14 +17,14 @@ Answer the following questions before running a `migrate` command: 2. Where do you want to store the logs? - __tmp/migrate__ 3. What is the URL for the GitHub repository to add the workflow to? - - __this repository__. The URL should follow the pattern with `:owner` and `:repo` replaced with your values. The command below uses `git remote get-url` to automatically populate these values. + - __this repository__. The URL should follow the pattern with `:owner` and `:repo` replaced with your values. ### Steps 1. Run the following `migrate` command in your codespace terminal: ```bash - gh valet migrate jenkins --target-url $(git remote get-url origin) --output-dir tmp/migrate --source-url http://localhost:8080/job/monas_dev_work/job/monas_freestyle + gh valet migrate jenkins --target-url https://github.com/:owner/:repo --output-dir tmp/migrate --source-url http://localhost:8080/job/monas_dev_work/job/monas_freestyle ``` 2. The command will write the URL to the pull request that was created when the command succeeds.