diff --git a/.github/workflows/deploy-to-control-plane.yml b/.github/workflows/deploy-to-control-plane.yml index 13a9f93..1fec60b 100644 --- a/.github/workflows/deploy-to-control-plane.yml +++ b/.github/workflows/deploy-to-control-plane.yml @@ -6,10 +6,10 @@ name: Deploy-To-Control-Plane on: # Uncomment the lines you want actions that will cause the workflow to Triggers the workflow on push or pull request events but only for the main branch - # push: - # branches: [main] - # pull_request: - # branches: [main] + push: + branches: [main] + pull_request: + branches: [main] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/app.js b/app.js index dfb621d..5eac5fb 100644 --- a/app.js +++ b/app.js @@ -18,7 +18,7 @@ const server = http.createServer((req, res) => { var myArgs = process.argv; var newDate = new Date(); - res.end('Environment Variables\n\n' + JSON.stringify(ordered, null, 4) + '\n\nArguments:\n\n' + myArgs + '\n\nWelcome to Control Plane!\n\nThe time is: ' + newDate.toUTCString()); + res.end('Hello! Here are Peter Kaufmans Environment Variables\n\n' + JSON.stringify(ordered, null, 4) + '\n\nArguments:\n\n' + myArgs + '\n\nWelcome to Control Plane!\n\nThe time is: ' + newDate.toUTCString()); });