Skip to content
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

Update github issue and PR templates #1087

Merged
merged 1 commit into from
Feb 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<!--
Thank you for submitting this issue! If you are not reporting a bug, please delete all of the following text.
If you are reporting a bug, please ensure moviepy is updated to the latest version before submitting, as some bugs may only be present on older versions.
Thank you for submitting this issue!
If you are *not* reporting a bug, please delete all of the following text.
If you *are* reporting a bug, please ensure that moviepy is updated to the latest version before submitting, as some bugs may only be present on older versions.

You can format code by putting ``` (that's 3 backticks) on a line by itself at the beginning and end of each code block.
You can format code by putting ``` (that's 3 backticks) on a line by itself at the beginning and end of each code block. For example:

```
from moviepy.editor import *

clip = ColorClip((600, 400), color=(255, 100, 0), duration=2)
clip.write_videofile("colorclip.mp4", fps=24)
```
-->
### Expected Behavior

Expand Down
11 changes: 7 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!-- Please tick when you have done these. They don't need to all be completed before the PR is created -->
- [ ] If this is a bugfix, I have provided code that clearly demonstrates the problem and that works when used with this PR
- [ ] I have added a test to the test suite, if necessary
- [ ] I have properly documented new or changed features in the documention, or the docstrings
<!--
Please tick when you have done these. They don't need to all be completed before the PR is created.
Delete them if they are not appropriate for this pull request.
-->
- [ ] <!--Only relevant if this is a bug fix-->I have provided code that clearly demonstrates the bug and only works correctly when used with this PR
- [ ] I have added suitable tests to the test suite in `tests/`
- [ ] I have properly documented new or changed features in the documention or in the docstrings
- [ ] I have properly documented unusual changes to the code in the comments around it
- [ ] I have made note of any breaking/backwards incompatible changes