Skip to content

Commit aa297d4

Browse files
committed
linting
1 parent ca81f58 commit aa297d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dry-run.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ async function check (args: any): Promise<void> {
3939

4040
// Retries the commit message if the PR is from Dependabot
4141
const commitMessage = await getMessage(githubClient, actionContext)
42-
const pull_request: any = await (await githubClient.rest.pulls.get({ owner: repoDetails.owner, repo: repoDetails.repo, pull_number: args.prNumber })).data
42+
const pullRequest: any = await (await githubClient.rest.pulls.get({ owner: repoDetails.owner, repo: repoDetails.repo, pull_number: args.prNumber })).data
4343

4444
const newContext = new Context()
4545
newContext.payload = {
46-
pull_request: pull_request,
46+
pull_request: pullRequest,
4747
repository: actionContext.payload.repository
4848
}
4949

0 commit comments

Comments
 (0)