diff --git a/app.js b/app.js index 541532ebe..7fd94cd5e 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('Hello World!')); +app.get('/', (req, res) => res.send('I have added a review stage in pipeline with manual approval condition!')); app.listen(port); console.log(`App running on http://localhost:${port}`);