diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 81a4b90aad15..f159c646d68a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -36,7 +36,13 @@ By following these guidelines, your PRs are more likely to be merged quickly aft - [ ] I have considered potential risks and mitigations for my changes. - [ ] I have documented my changes clearly and comprehensively. - [ ] I have not snuck in any "extra" small tweaks changes. -- [ ] I have run `black .` and `isort .` against my code to ensure it passes our linter. +- [ ] I have run the following commands against my code to ensure it passes our linters: + ```shell + black . + isort . + mypy + autoflake --remove-all-unused-imports --recursive --ignore-init-module-imports autogpt tests --in-place + ```