Skip to content

Commit c605d68

Browse files
committed
Force push to dev
1 parent d74f8c8 commit c605d68

35 files changed

+1638
-3261
lines changed

.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
TOKEN=MyBotToken
22
LOG_URL=https://logviewername.herokuapp.com/
33
GUILD_ID=1234567890
4+
MODMAIL_GUILD_ID=1234567890
45
OWNERS=Owner1ID,Owner2ID,Owner3ID
5-
MONGO_URI=mongodb+srv://mongodburi
6+
CONNECTION_URI=mongodb+srv://mongodburi
File renamed without changes.

CONTRIBUTING.md .github/CONTRIBUTING.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,32 @@ We use GitHub to host code, to track issues and feature requests, as well as acc
1515

1616
## We Use [Git Flow](https://atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
1717
![Simple Image Of A Git Flow Workflow](https://nvie.com/img/[email protected])
18-
When contributing to this project please make sure you follow this and name your branches appropriately!
18+
When contributing to this project, please make sure you follow this and name your branches appropriately!
1919

2020
## All Code Changes Happen Through Pull Requests
2121
Make sure you know how Git Flow works before contributing!
2222
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
2323

2424
1. Fork the repo and create your branch from `master` or `development` according to Git Flow.
25-
2. If you've added code that should be tested, add tests.
26-
3. If you've changed APIs, update the documentation.
27-
4. Ensure the test suite passes.
28-
5. Make sure your code lints.
29-
6. Issue that pull request!
25+
2. Update the CHANGELOG.
26+
3. If you've changed `core/*` or `bot.py`, mark changelog as "BREAKING" since plugins may break.
27+
4. Make sure your code passes the lint checks.
28+
5. Create Issues and pull requests!
3029

3130
## Any contributions you make will be under the GNU Affero General Public License v3.0
3231
In short, when you submit code changes, your submissions are understood to be under the same [GNU Affero General Public License v3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) that covers the project. Feel free to contact the maintainers if that's a concern.
3332

3433
## Report bugs using [Github Issues](https://github.com/kyb3r/modmail/issues)
35-
We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/kyb3r/modmail/issues/new); it's that easy!
34+
We use GitHub issues to track public bugs. Report a bug by [opening a new Issue](https://github.com/kyb3r/modmail/issues/new); it's that easy!
3635

3736
## Write bug reports with detail, background, and sample code
3837
**Great Bug Reports** tend to have:
3938

40-
- A quick summary and/or background
39+
- A quick summary and background
4140
- Steps to reproduce
4241
- Be specific!
4342
- What you expected would happen
44-
- What actually happens
43+
- What *actually* happens
4544
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)
4645

4746

.github/ISSUE_TEMPLATE/command-request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Command request
33
about: Request a new command
4-
title: "[COMMAND-REQUEST] your title here"
4+
title: "your title here"
55
labels: command-request
66
assignees: ''
77

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: "[FEATURE-REQUEST] your title here"
4+
title: "your title here"
55
labels: feature-request
66
assignees: ''
77

.github/workflows/lints.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
continue-on-error: true
3232
- name: Black and flake8
3333
run: |
34-
black . --check
34+
black . --diff

.github/workflows/stale.yml

-17
This file was deleted.

.lint.py

-17
This file was deleted.

0 commit comments

Comments
 (0)