Skip to content

Commit

Permalink
fix(ci): remove private repo check in sync changesets (janus-idp#516)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Schultz <pschultz@pobox.com>
  • Loading branch information
schultzp2020 committed Sep 11, 2023
1 parent ef7685a commit ac3d336
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .changeset/smart-cougars-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 1 addition & 3 deletions .github/workflows/sync-renovate-changeset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ jobs:
const names = [];
for (const file of files) {
const data = JSON.parse(await fs.readFile(file, "utf8"));
if (!data.private) {
names.push(data.name);
}
names.push(data.name);
}
return names;
}
Expand Down

0 comments on commit ac3d336

Please sign in to comment.