Skip to content

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kadel committed Sep 6, 2023
1 parent 7c242bb commit b5b85e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/sync_renovate-changesets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ jobs:
const { promises: fs } = require("fs");
// Parses package.json files and returns the package names
async function getPackagesNames(files) {
console.log("files", files);
const names = [];
for (const file of files) {
const data = JSON.parse(await fs.readFile(file, "utf8"));
console.log("data", data);
if (!data.private) {
names.push(data.name);
}
Expand Down

0 comments on commit b5b85e0

Please sign in to comment.