We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently, we are set the config with all lowercase names:
https://github.com/kaiyuanshe/oss-bot/blob/3038422f79adbbfdf5cd850746377b0bdbd684f3/src/config.ts#L33
However, the GitHub webhook will send us an event with "full_name": "DSExtension/DSExtension".
"full_name": "DSExtension/DSExtension"
Then when we have received the event, we have the following code:
https://github.com/kaiyuanshe/oss-bot/blob/3038422f79adbbfdf5cd850746377b0bdbd684f3/src/issue-handlers.ts#L94-L96
That's the reason why the DSExtension committers can not receive the msg card.
A solution would be converting the full_name to lowercase before we match it in our managedRepoConfig.
full_name
managedRepoConfig
The text was updated successfully, but these errors were encountered:
Same problem encountered in Quicksql
Sorry, something went wrong.
c7c6c28
more configurable repo config, with wildcat support (#57 #53)
1a7944c
The config should be not case sensitive anymore, this issue has been fixed by 1a7944c
Presented and closed on the weekly meeting.
Thanks @zhuangbiaowei for helping me close this issue. :-D
huan
No branches or pull requests
Currently, we are set the config with all lowercase names:
https://github.com/kaiyuanshe/oss-bot/blob/3038422f79adbbfdf5cd850746377b0bdbd684f3/src/config.ts#L33
However, the GitHub webhook will send us an event with
"full_name": "DSExtension/DSExtension"
.Then when we have received the event, we have the following code:
https://github.com/kaiyuanshe/oss-bot/blob/3038422f79adbbfdf5cd850746377b0bdbd684f3/src/issue-handlers.ts#L94-L96
That's the reason why the DSExtension committers can not receive the msg card.
A solution would be converting the
full_name
to lowercase before we match it in ourmanagedRepoConfig
.The text was updated successfully, but these errors were encountered: