tlp: remove incubator references (#147)

diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 8ff1432..049789d 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -14,7 +14,7 @@
 If you are reporting an enhancement request, please include information on what you are trying to achieve and why that enhancement would help you.
 
 For more information about reporting issues, see
-https://github.com/apache/incubator-openwhisk/blob/master/CONTRIBUTING.md#raising-issues
+https://github.com/apache/openwhisk/blob/master/CONTRIBUTING.md#raising-issues
 
 Use the commands below to provide key information from your environment:
 You do not have to include this information if this is a feature request.
diff --git a/.travis.yml b/.travis.yml
index 4b013af..67763c8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,12 +39,12 @@
     on:
       tags: true
       all_branches: true
-      repo: apache/incubator-openwhisk-runtime-nodejs
+      repo: apache/openwhisk-runtime-nodejs
   - provider: script
     script: "./tools/travis/publish.sh openwhisk 6 nightly && ./tools/travis/publish.sh openwhisk 8 nightly && ./tools/travis/publish.sh openwhisk 10 nightly && ./tools/travis/publish.sh openwhisk 12 nightly"
     on:
       branch: master
-      repo: apache/incubator-openwhisk-runtime-nodejs
+      repo: apache/openwhisk-runtime-nodejs
 
 env:
   global:
diff --git a/README.md b/README.md
index e0f67d4..baa584a 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@
 # Apache OpenWhisk runtimes for Node.js
 
 [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
-[![Build Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-nodejs.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-nodejs)
+[![Build Status](https://travis-ci.org/apache/openwhisk-runtime-nodejs.svg?branch=master)](https://travis-ci.org/apache/openwhisk-runtime-nodejs)
 
 This repository contains sources files needed to build the Node.js runtimes for Apache OpenWhisk. The build system will produce a series of docker images for each runtime version. These images are used in the platform to execute Node.js actions.
 
@@ -33,7 +33,7 @@
 
 This README documents the build, customisation and testing of these runtime images.
 
-**Do you want to learn more about using Node.js actions to build serverless applications?** Please see the main project documentation [here](https://github.com/apache/incubator-openwhisk/blob/master/docs/actions-nodejs.md) for that information.
+**Do you want to learn more about using Node.js actions to build serverless applications?** Please see the main project documentation [here](https://github.com/apache/openwhisk/blob/master/docs/actions-nodejs.md) for that information.
 
 ## Usage
 
@@ -82,7 +82,7 @@
 
 ### Runtimes Manifest
 
-Available runtimes in Apache OpenWhisk are defined using the runtimes manifest in this file: [runtimes.json](https://github.com/apache/incubator-openwhisk/blob/9dacce433cfdd64aa1e4f5c8eab6db31df8c4eae/ansible/files/runtimes.json#L3-L52)
+Available runtimes in Apache OpenWhisk are defined using the runtimes manifest in this file: [runtimes.json](https://github.com/apache/openwhisk/blob/9dacce433cfdd64aa1e4f5c8eab6db31df8c4eae/ansible/files/runtimes.json#L3-L52)
 
 Modify the manifest and re-deploy the platform to pick up local images changes.
 
@@ -90,7 +90,7 @@
 
 Dockerfiles for runtime images are defined in the `core` directory. Each runtime version folder has a custom `Dockerfile` and `package.json`. If you need to add extra dependencies to a runtime version - modify these files.
 
-The `core/nodejsActionBase` folder contains the Node.js app server used to implement the [action interface](https://github.com/apache/incubator-openwhisk/blob/master/docs/actions-new.md#action-interface), used by the platform to inject action code into the runtime and fire invocation requests. This common code is used in all runtime versions.
+The `core/nodejsActionBase` folder contains the Node.js app server used to implement the [action interface](https://github.com/apache/openwhisk/blob/master/docs/actions-new.md#action-interface), used by the platform to inject action code into the runtime and fire invocation requests. This common code is used in all runtime versions.
 
 ### Build
 
@@ -107,13 +107,13 @@
 
 ### Testing
 
-- Install project dependencies from the top-level Apache OpenWhisk [project](https://github.com/apache/incubator-openwhisk), which ensures correct versions of dependent libraries are available in the Maven cache.
+- Install project dependencies from the top-level Apache OpenWhisk [project](https://github.com/apache/openwhisk), which ensures correct versions of dependent libraries are available in the Maven cache.
 
 ```
 ./gradlew install
 ```
 
-*This command **MUST BE** run from the directory containing the main Apache OpenWhisk [repository](https://github.com/apache/incubator-openwhisk), not this repository's directory.*
+*This command **MUST BE** run from the directory containing the main Apache OpenWhisk [repository](https://github.com/apache/openwhisk), not this repository's directory.*
 
 - Build the local Docker images for the runtime versions (see the instructions above).
 - Build the custom Docker images used in local testing.
diff --git a/core/nodejs10Action/package.json b/core/nodejs10Action/package.json
index baaf0ff..9e5ef4e 100644
--- a/core/nodejs10Action/package.json
+++ b/core/nodejs10Action/package.json
@@ -4,7 +4,7 @@
   "description": "Apache OpenWhisk NodeJS Runtime",
   "repository": {
     "type": "git",
-    "url": "git@github.com:apache/incubator-openwhisk-runtime-nodejs.git"
+    "url": "git@github.com:apache/openwhisk-runtime-nodejs.git"
   },
   "license": "Apache-2.0",
   "dependencies": {
diff --git a/core/nodejs12Action/package.json b/core/nodejs12Action/package.json
index 734d271..1787b41 100644
--- a/core/nodejs12Action/package.json
+++ b/core/nodejs12Action/package.json
@@ -4,7 +4,7 @@
   "description": "Apache OpenWhisk NodeJS Runtime",
   "repository": {
     "type": "git",
-    "url": "git@github.com:apache/incubator-openwhisk-runtime-nodejs.git"
+    "url": "git@github.com:apache/openwhisk-runtime-nodejs.git"
   },
   "license": "Apache-2.0",
   "dependencies": {
diff --git a/core/nodejs6Action/CHANGELOG.md b/core/nodejs6Action/CHANGELOG.md
index 905c53c..cec37bb 100644
--- a/core/nodejs6Action/CHANGELOG.md
+++ b/core/nodejs6Action/CHANGELOG.md
@@ -41,17 +41,17 @@
 ## 1.11.2
 Change: Update runtime to allow more environment variables
 
-- Update run handler to accept more environment variables [#78](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/78)
+- Update run handler to accept more environment variables [#78](https://github.com/apache/openwhisk-runtime-nodejs/pull/78)
 
 ## 1.11.1
 Change: Update runtime to put runtime npm modules at root level, user npm modules at container invocation level
 
-- Don't override runtime npm packages when user provides their own [#73](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/73/files)
+- Don't override runtime npm packages when user provides their own [#73](https://github.com/apache/openwhisk-runtime-nodejs/pull/73/files)
 
 ## 1.11.0
 Change: Update runtime to work in concurrent mode
 
-- Update runtime to work in concurrent mode [#41](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/41/files)
+- Update runtime to work in concurrent mode [#41](https://github.com/apache/openwhisk-runtime-nodejs/pull/41/files)
 
 ## 1.10.0
 Change: Update npm openwhisk package from `3.15.0` to `3.16.0`
diff --git a/core/nodejs8Action/CHANGELOG.md b/core/nodejs8Action/CHANGELOG.md
index e210c5c..c7d0989 100644
--- a/core/nodejs8Action/CHANGELOG.md
+++ b/core/nodejs8Action/CHANGELOG.md
@@ -41,17 +41,17 @@
 ## 1.8.2
 Change: Update runtime to allow more environment variables
 
-- Update run handler to accept more environment variables [#78](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/78)
+- Update run handler to accept more environment variables [#78](https://github.com/apache/openwhisk-runtime-nodejs/pull/78)
 
 ## 1.8.1
 Change: Update runtime to put runtime npm modules at root level, user npm modules at container invocation level
 
-- Don't override runtime npm packages when user provides their own [#73](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/73/files)
+- Don't override runtime npm packages when user provides their own [#73](https://github.com/apache/openwhisk-runtime-nodejs/pull/73/files)
 
 ## 1.8.0
 Change: Update runtime to work in concurrent mode
 
-- Update runtime to work in concurrent mode [#41](https://github.com/apache/incubator-openwhisk-runtime-nodejs/pull/41/files)
+- Update runtime to work in concurrent mode [#41](https://github.com/apache/openwhisk-runtime-nodejs/pull/41/files)
 
 ## 1.7.0
 Change: Update openwhisk npm package from `3.15.0` to `3.16.0`
diff --git a/core/nodejs8Action/package.json b/core/nodejs8Action/package.json
index 36c5bcf..88700b7 100644
--- a/core/nodejs8Action/package.json
+++ b/core/nodejs8Action/package.json
@@ -4,7 +4,7 @@
   "description": "Apache OpenWhisk NodeJS Runtime",
   "repository": {
     "type": "git",
-    "url": "git@github.com:apache/incubator-openwhisk-runtime-nodejs.git"
+    "url": "git@github.com:apache/openwhisk-runtime-nodejs.git"
   },
   "license": "Apache-2.0",
   "dependencies": {
diff --git a/core/nodejsActionBase/platform/knative.js b/core/nodejsActionBase/platform/knative.js
index c8f37d8..d0dbdb0 100644
--- a/core/nodejsActionBase/platform/knative.js
+++ b/core/nodejsActionBase/platform/knative.js
@@ -152,7 +152,7 @@
  * Pre-process HTTP request information and make it available as parameter data to the action function
  * by moving it to where the route handlers expect it to be (i.e., in the JSON value data map).
  *
- * See: https://github.com/apache/incubator-openwhisk/blob/master/docs/webactions.md#http-context
+ * See: https://github.com/apache/openwhisk/blob/master/docs/webactions.md#http-context
  *
  * HTTP Context
  * ============
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index a676794..aeb900f 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -23,7 +23,7 @@
 SCRIPTDIR=$(cd $(dirname "$0") && pwd)
 ROOTDIR="$SCRIPTDIR/../.."
 WHISKDIR="$ROOTDIR/../openwhisk"
-UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
+UTILDIR="$ROOTDIR/../openwhisk-utilities"
 
 export OPENWHISK_HOME=$WHISKDIR
 
diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index 3424cdb..6315f1a 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -26,9 +26,9 @@
 
 # clone OpenWhisk utilities repo. in order to run scanCode
 cd $HOMEDIR
-git clone https://github.com/apache/incubator-openwhisk-utilities.git
+git clone https://github.com/apache/openwhisk-utilities.git
 
 # clone main openwhisk repo. for testing purposes
-git clone --depth=1 https://github.com/apache/incubator-openwhisk.git openwhisk
+git clone --depth=1 https://github.com/apache/openwhisk.git openwhisk
 cd openwhisk
 ./tools/travis/setup.sh