fix: invert non-gittensor label condition (#1960)

This commit is contained in:
Sure Admin (bot)
2026-05-24 17:36:17 +02:00
committed by GitHub
parent 8c07236f71
commit 89f42497a9

View File

@@ -39,7 +39,7 @@ jobs:
const users = new Set(parseList(process.env.GITTENSOR_USERS, 'GITTENSOR_USERS'));
const exceptions = new Set(parseList(process.env.GITTENSOR_EXCEPTIONS, 'GITTENSOR_EXCEPTIONS'));
if (!users.has(author) || exceptions.has(author)) {
if (users.has(author) || exceptions.has(author)) {
core.info(`No label needed for @${author}.`);
return;
}