Skip to content

Commit

Permalink
bump prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-evans committed Sep 5, 2023
1 parent 1b0d365 commit a4238ff
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 54 deletions.
86 changes: 36 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"jest-circus": "^29.6.2",
"jest-environment-jsdom": "^29.6.4",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
Expand Down
5 changes: 2 additions & 3 deletions src/create-pull-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
core.info(
`Checking if '${branchRepository}' is a fork of '${baseRemote.repository}'`
)
const parentRepository = await githubHelper.getRepositoryParent(
branchRepository
)
const parentRepository =
await githubHelper.getRepositoryParent(branchRepository)
if (parentRepository != baseRemote.repository) {
throw new Error(
`Repository '${branchRepository}' is not a fork of '${baseRemote.repository}'. Unable to continue.`
Expand Down

0 comments on commit a4238ff

Please sign in to comment.