We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca7cb6 commit 11ff4acCopy full SHA for 11ff4ac
packages/backend/server/routes/publish.post.ts
@@ -231,13 +231,12 @@ export default eventHandler(async (event) => {
231
);
232
233
if (comment !== "off") {
234
- const { data: { permissions } } = await installation.request(
235
- "GET /repos/{owner}/{repo}/installation",
236
- {
237
- owner: workflowData.owner,
238
- repo: workflowData.repo,
239
- }
240
- );
+ const {
+ data: { permissions },
+ } = await installation.request("GET /repos/{owner}/{repo}/installation", {
+ owner: workflowData.owner,
+ repo: workflowData.repo,
+ });
241
242
try {
243
// eslint-disable-next-line unicorn/prefer-ternary
0 commit comments