Skip to content

Commit

Permalink
Updated index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 22, 2024
1 parent f0bfb2a commit bae9d6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,7 @@ jobs:
branch: main/${GITHUB_SHA::7}
targetBranch: main
createPR: true
message: 'Updated the image tag to ${GITHUB_SHA::7}'
message: 'Updated the image tag to ${GITHUB_SHA::7}'
commitUserName: github-actions[bot]
commitUserEmail: 41898282+github-actions[bot]@users.noreply.github.com
masterBranchName: main
2 changes: 1 addition & 1 deletion source-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
const msg = 'Hello World!\n'
const msg = 'Hello World!!\n'
res.end(msg);
});

Expand Down

0 comments on commit bae9d6c

Please sign in to comment.