feat: add support for EXCLUDE_REPO env variable (#1299)

* Add support for EXCLUDE_REPO env variable

* review

* docs

* refactor

---------

Co-authored-by: Alexandr <qwerty541zxc@gmail.com>
This commit is contained in:
Bear_03
2025-10-05 23:49:17 +03:00
committed by GitHub
co-authored by Alexandr
parent 39b93b57c8
commit a697215f8e
4 changed files with 16 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
const excludeRepositories = process.env.EXCLUDE_REPO
? process.env.EXCLUDE_REPO.split(",")
: [];
export { excludeRepositories };
export default excludeRepositories;