diff --git a/.github/workflows/deploy_to_test.yml b/.github/workflows/deploy_to_test.yml index 8f53756..cbee67d 100644 --- a/.github/workflows/deploy_to_test.yml +++ b/.github/workflows/deploy_to_test.yml @@ -38,7 +38,7 @@ jobs: environment: ${{ secrets.POSTMAN_ENVIRONMENT }} - name: Merge test -> main - uses: devmasx/merge-branch@master + uses: devmasx/merge-branch@v1.4.0 with: type: now from_branch: test diff --git a/src/index.ts b/src/index.ts index 9d4507b..29d9e8f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,7 +12,7 @@ app.use(cors()); const port = process.env.PORT || 4000; app.get('/', (_req, res) => { - res.send('Hello World!!!!'); + res.send('Hello World!!!!!'); }); db.connectDB();