Skip to content

Commit

Permalink
:Merge remote-tracking branch 'origin/add-remote-branches-to-graph' i…
Browse files Browse the repository at this point in the history
…nto add-remote-branches-to-graph
  • Loading branch information
tranhl committed Nov 27, 2024
2 parents a45898e + fd0ba40 commit ff83b85
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/inputs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ describe('getCurrentPullRequest', () => {
number: 100,
base: { ref: 'main' },
head: { ref: 'feat/git-town-action' },
state: 'open',
},
},
} as unknown as typeof github.context
Expand All @@ -144,8 +145,9 @@ describe('getCurrentPullRequest', () => {

expect(currentPullRequest).toStrictEqual({
number: 100,
baseRefName: 'main',
headRefName: 'feat/git-town-action',
base: { ref: 'main' },
head: { ref: 'feat/git-town-action' },
state: 'open',
})
})

Expand Down

0 comments on commit ff83b85

Please sign in to comment.