Skip to content

Commit

Permalink
chore: 🚧 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Dec 1, 2024
1 parent 41a9b97 commit 3e13b0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46870,7 +46870,10 @@ function main() {
console.error("Could not determine default branch sha");
process.exit(1);
}
yield (0, github_2.createBranch)(octokit, owner, repo, "_codelimit_reports", sha);
const empty_tree_object = "4b825dc642cb6eb9a060e54bf8d69288fbee4904";
yield (0, github_2.createBranch)(octokit, owner, repo, "_codelimit_reports", empty_tree_object);
} else {
console.log("Branch _codelimit_reports already exists");
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "tsc",
"start": "yarn build && node ./build/action.js",
"dist": "esbuild build/action.js --bundle --platform=node --outfile=dist/index.js",
"dist": "yarn build && esbuild build/action.js --bundle --platform=node --outfile=dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand Down

0 comments on commit 3e13b0d

Please sign in to comment.