Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
* | Add docstring to FetchIssueErrors and remove extra new line | 2021-01-26 | -1/+2 | ||
| | |||||
* | Merge branch 'feature/link_issues' of ↵ | 2021-01-26 | -1/+0 | ||
|\ | | | | | | | https://github.com/Shivansh-007/sir-lancebot into feature/link_issues | ||||
| * | Remove debug code. | 2021-01-26 | -1/+0 | ||
| | | | | | | Co-authored-by: Xithrius <[email protected]> | ||||
* | | Fix lint issues | 2021-01-26 | -1/+1 | ||
| | | |||||
* | | Use enums for fetch issue errors. | 2021-01-26 | -4/+11 | ||
| | | |||||
* | | Make the python_discord_repos' orgranisation name configurable | 2021-01-26 | -3/+3 | ||
| | | |||||
* | | Change PYDIS_REPOS to PYTHON_DISCORD_REPOS | 2021-01-26 | -3/+4 | ||
| | | |||||
* | | Use list.extend while appending issue links | 2021-01-26 | -1/+1 | ||
| | | |||||
* | | Cache repo regex | 2021-01-26 | -2/+2 | ||
|/ | |||||
* | Remove debug code and add docstrings. | 2021-01-26 | -2/+3 | ||
| | |||||
* | Add in codeblock check | 2021-01-26 | -8/+40 | ||
| | |||||
* | Add ability to automatically send issues if matching <repo>#<issue> | 2021-01-23 | -27/+69 | ||
| | |||||
* | Remove references to old name. | 2020-11-21 | -1/+1 | ||
| | | | | | I've tried to replace this with generic references where appropriate, but a lot of the time it just doesn't make a lot of sense to do so. | ||||
* | remove redundant set() in issues.py | 2020-10-15 | -3/+2 | ||
| | |||||
* | Fix order of imports | 2020-09-19 | -1/+1 | ||
| | |||||
* | Authenticate with the GitHub API to allow for more requests | 2020-09-19 | -3/+7 | ||
| | |||||
* | Invoke help command when no PRs/issues are given | 2020-09-19 | -0/+4 | ||
| | |||||
* | Limit maximum PRs/issues to 10 per invocation | 2020-09-19 | -1/+14 | ||
| | |||||
* | Allow `issue` command in #dev-branding | 2020-09-19 | -2/+5 | ||
| | |||||
* | Described how links are shown in the embed. | 2020-09-19 | -0/+1 | ||
| | |||||
* | Replaced single quotes with double, set the repo link to be user-defined | 2020-09-19 | -2/+2 | ||
| | |||||
* | Updated issue/pr command to get multiple links. | 2020-09-19 | -38/+46 | ||
| | |||||
* | Fix import order | 2020-04-19 | -1/+1 | ||
| | |||||
* | Allow issue command in #dev-contrib | 2020-04-19 | -2/+2 | ||
| | |||||
* | Deseasonify: log in `add_cog` rather than in each `setup` | 2020-03-28 | -1/+0 | ||
| | | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made. | ||||
* | Deseasonify: rename `seasons` pkg to `exts` | 2020-03-28 | -0/+77 | ||
It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality. |