-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix config #45
Fix config #45
Conversation
also changed time and priority labels from array of objects to array of strings
const orgConfig = parseYaml( | ||
await download({ | ||
context, | ||
repository: UBIQUIBOT_CONFIG_REPOSITORY, | ||
owner: payload.organization?.login || payload.repository.owner.login, | ||
}) | ||
); | ||
|
||
const repositoryConfiguration = parseYaml( | ||
const repoConfig = parseYaml( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer that you do not shorten words. The reason why is to reduce cognitive overhead when reading through all of the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your adjustments @whilefoo
62cb0c6
into
0x4007:feat/contributor-incentives-total-scoring
@wannacfuture please sync your branch. |
}), | ||
{ default: allCommands } | ||
), | ||
disabledCommands: T.Array(T.String(), { default: allCommands }), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps it makes sense to enable all commands by default? It seems that disabling by default has always caused more headaches when starting new repos for us? rfc @whilefoo
@pavlovcik I implemented the custom array merger so in case of strings it concats arrays and removes duplicates and in case of objects just concats.
I changed
commands
todisabledCommands
as array of strings and I changed time and priority labels to array of strings