Skip to content

Commit

Permalink
pullTest2
Browse files Browse the repository at this point in the history
  • Loading branch information
isha2012 committed Nov 16, 2024
1 parent 049e52b commit 33292a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Pull Request CI

on:
pull_request:
branches: [ "prTest2" ]
branches: [ "prTest1" ]

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ app.get('/about', (req: Request, res: Response) => {
app.get('/cache', (req: Request, res: Response) => {
res.json({ message: 'Hello, GitHub Actions! Testing cache.' });
});
app.get('/pullRequest', (req: Request, res: Response) => {
res.json({ message: 'Hello, GitHub Actions! Testing pull reuqest.' });
app.get('/pullReqTest', (req: Request, res: Response) => {
res.json({ message: 'Hello, GitHub Actions! Testing pull reuqest 2nd time.' });
});

// Export the app for testing purposes
Expand Down

0 comments on commit 33292a7

Please sign in to comment.