You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/03/28 20:35:40 UTC

[GitHub] mrutkows closed pull request #832: Replacing pritidesai with apache in GitHub repos

mrutkows closed pull request #832: Replacing pritidesai with apache in GitHub repos
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/832
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/docs/sync_projects_between_client_and_server.md b/docs/sync_projects_between_client_and_server.md
index 4467ff24..20a1f6bc 100644
--- a/docs/sync_projects_between_client_and_server.md
+++ b/docs/sync_projects_between_client_and_server.md
@@ -207,7 +207,7 @@ project:
         Extension1:
             dependencies:
                 helloworlds:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/helloworlds
+                    location: github.com/apache/incubator-openwhisk-test/packages/helloworlds
 ```
 
 After deploying this project with `wskdeploy sync -m manifest.yaml`, package `Extension2` has following annotation:
@@ -276,9 +276,9 @@ project:
         Extension2:
             dependencies:
                 helloworlds:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/helloworlds
+                    location: github.com/apache/incubator-openwhisk-test/packages/helloworlds
                 custom-hellowhisk:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/hellowhisk
+                    location: github.com/apache/incubator-openwhisk-test/packages/hellowhisk
 ...
 ```
 
diff --git a/tests/src/integration/dependency/README.md b/tests/src/integration/dependency/README.md
index 741511f4..2977114d 100644
--- a/tests/src/integration/dependency/README.md
+++ b/tests/src/integration/dependency/README.md
@@ -24,7 +24,7 @@ dependent packages, `wskdeploy` supports automatic deployment of those dependent
 packages.
 
 For example, our `root-app` application is dependent on `child-app` package located
-at https://github.com/pritidesai/child-app.
+at https://github.com/apache/child-app.
 We can declare this dependency in `manifest.yaml` with:
 
 ```yaml
@@ -33,7 +33,7 @@ packages:
     namespace: guest
     dependencies:
       child-app:
-        location: github.com/pritidesai/child-app
+        location: github.com/apache/child-app
     triggers:
       trigger1:
     rules:
@@ -45,7 +45,7 @@ packages:
 **Note:**
 
 1. Package name of the dependent package `child-app` should match GitHub repo
-name `github.com/pritidesai/child-app`.
+name `github.com/apache/child-app`.
 2. `wskdeploy` creates a directory named `Packages` and clones GitHub repo of
 dependent package under `Packages`. Now the repo is cloned and renamed to
 `<package>-<branch>`. Here in our example, `wskdeploy` clones repo under
diff --git a/tests/src/integration/managed-deployment/06-manifest-with-single-dependency.yaml b/tests/src/integration/managed-deployment/06-manifest-with-single-dependency.yaml
index ec2241c6..b23bbadb 100644
--- a/tests/src/integration/managed-deployment/06-manifest-with-single-dependency.yaml
+++ b/tests/src/integration/managed-deployment/06-manifest-with-single-dependency.yaml
@@ -20,7 +20,7 @@ project:
         Extension1:
             dependencies:
                 helloworlds:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/helloworlds
+                    location: github.com/apache/incubator-openwhisk-test/packages/helloworlds
             triggers:
                 triggerInExtension1:
             rules:
diff --git a/tests/src/integration/managed-deployment/07-manifest-with-dependency.yaml b/tests/src/integration/managed-deployment/07-manifest-with-dependency.yaml
index c9427c0b..f9cb7828 100644
--- a/tests/src/integration/managed-deployment/07-manifest-with-dependency.yaml
+++ b/tests/src/integration/managed-deployment/07-manifest-with-dependency.yaml
@@ -20,11 +20,11 @@ project:
         Extension2:
             dependencies:
                 helloworlds:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/helloworlds
+                    location: github.com/apache/incubator-openwhisk-test/packages/helloworlds
                 custom-hellowhisk:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/hellowhisk
+                    location: github.com/apache/incubator-openwhisk-test/packages/hellowhisk
                 custom-helloworlds:
-                    location: github.com/pritidesai/incubator-openwhisk-test/packages/helloworlds
+                    location: github.com/apache/incubator-openwhisk-test/packages/helloworlds
             sequences:
                 helloworld-sequence:
                    actions: custom-helloworlds/hello-js, custom-hellowhisk/greeting, helloworlds/hello-js
diff --git a/tests/usecases/github/README.md b/tests/usecases/github/README.md
index 8a94b7fb..d03e60b0 100644
--- a/tests/usecases/github/README.md
+++ b/tests/usecases/github/README.md
@@ -18,7 +18,7 @@
 
 # Using GitHub Package with `wskdeploy`
 
-The [GitHub usecase](https://github.com/pritidesai/incubator-openwhisk-wskdeploy/tree/master/tests/usecases/github) demonstrates how to build an OpenWhisk app to display github commit messages using `wskdeploy`.
+The [GitHub usecase](https://github.com/apache/incubator-openwhisk-wskdeploy/tree/master/tests/usecases/github) demonstrates how to build an OpenWhisk app to display github commit messages using `wskdeploy`.
 
 OpenWhisk comes with a [GitHub package](https://github.com/apache/incubator-openwhisk-catalog/blob/master/packages/github/README.md) which can be used to run GitHub APIs. For our app to display github commits, we need:
 
diff --git a/tests/usecases/slack/README.md b/tests/usecases/slack/README.md
index a67b0373..a0a53aab 100644
--- a/tests/usecases/slack/README.md
+++ b/tests/usecases/slack/README.md
@@ -18,7 +18,7 @@
 
 # Using Slack Package with `wskdeploy`
 
-The [Slack usecase](https://github.com/pritidesai/incubator-openwhisk-wskdeploy/tree/master/tests/usecases/slack) demonstrates how to build an OpenWhisk app to post a sample message to slack every hour using `wskdeploy`.
+The [Slack usecase](https://github.com/apache/incubator-openwhisk-wskdeploy/tree/master/tests/usecases/slack) demonstrates how to build an OpenWhisk app to post a sample message to slack every hour using `wskdeploy`.
 
 OpenWhisk comes with a [Slack package](https://github.com/apache/incubator-openwhisk-catalog/blob/master/packages/slack/README.md) which can be used to post messages to slack. For our app to post hourly messages, we need:
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services