diff --git a/dist/index.js b/dist/index.js
index 5379444..711d093 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -587,6 +587,7 @@ function createPullRequest(inputs) {
                         fileChanges: fileChanges
                     };
                     const pushCommitVarsWithoutContents = Object.assign(Object.assign({}, pushCommitVars), { fileChanges: Object.assign(Object.assign({}, pushCommitVars.fileChanges), { additions: (_a = pushCommitVars.fileChanges.additions) === null || _a === void 0 ? void 0 : _a.map(addition => {
+                                // eslint-disable-next-line @typescript-eslint/no-unused-vars
                                 const { contents } = addition, rest = __rest(addition, ["contents"]);
                                 return rest;
                             }) }) });
diff --git a/src/create-pull-request.ts b/src/create-pull-request.ts
index 67eaff4..ffc125d 100644
--- a/src/create-pull-request.ts
+++ b/src/create-pull-request.ts
@@ -384,6 +384,7 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
           fileChanges: {
             ...pushCommitVars.fileChanges,
             additions: pushCommitVars.fileChanges.additions?.map(addition => {
+              // eslint-disable-next-line @typescript-eslint/no-unused-vars
               const {contents, ...rest} = addition
               return rest
             })