Skip to content
Open
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
39 changes: 27 additions & 12 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,43 @@
---
name: Bug report
about: Create a report to help us improve Editor.js
title: "[Bug]"
labels: bug
title: (Bug)
labels: Bug :shield:,
assignees: ''

---

Describe a bug.
!--- Provide a general summary of the issue in the Title above -->

Steps to reproduce:
1. Go to …
2. Click on …
3. …
### Expected Behavior:
<!--- Tell us what should happen -->

Expected behavior:
### Current Behavior:
<!--- Tell us what happens instead of the expected behavior -->

Screenshots:
### Possible Solution:
<!--- Not obligatory, but suggest a fix/reason for the bug, -->

Device, Browser, OS:
### Steps to Reproduce:
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.

Editor.js version:
### Context (Environment):
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

<!--- Provide a general summary of the issue in the Title above -->

### Detailed Description:
<!--- Provide a detailed description of the change or addition you are proposing -->

### Possible Implementation:
<!--- Not obligatory, but suggest an idea for implementing addition or change -->

Plugins you use with their versions:

<!--
🤫 If you like Editor.js, please consider supporting us via OpenCollective:
Expand Down
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/discussion.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
name: Discussion
about: Any question about the Editor.js to discuss
title: ''
labels: discussion
title: (Discussion)
labels: Discussion :shield:,
assignees: ''

---

The question.
### The Question:

Why and how the question has come up.
### Why and how the question has come up:

<!--
🤫 If you like Editor.js, please consider supporting us via OpenCollective:
Expand Down
23 changes: 18 additions & 5 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
---
name: Feature request
about: Suggest an idea to improve Editor.js
title: "\U0001F4A1"
labels: feature
title: (Feature)
labels: Feature :shield:,
assignees: ''

---

1. Describe a problem.

2. Describe the solution you'd like. Mockups are welcome.
<!--- Provide a general summary of the feature in the Title above -->

3. Are there any alternatives?
### Is your proposal related to a problem?:

<!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." -->

### Describe the solution you'd like:

<!-- Provide a clear and concise description of what you want to happen. -->

### Describe alternatives you've considered:

<!-- Let us know about other solutions you've tried or researched. -->

### Additional context:

<!-- Is there anything else you can add about the proposal? You might want to link to related issues here, if you haven't already. -->

<!--
🤫 If you like Editor.js, please consider supporting us via OpenCollective:
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/contribution-inspector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Contribution Inspector

on:
issues:
types: [opened, edited, reopened]
pull_request:
types: [opened, edited, reopened]

jobs:
contribution_inspector:
runs-on: ubuntu-latest
name: Contribution Inspector
steps:
- name: All Checks
uses: flowdify/contribution-inspector@v1.0
with:
# GitHub Access Token
token: ${{ secrets.GITHUB_TOKEN }}
# Message to show when an issue is created successfully
issue--greeting-message: 'Thanks for your contribution!'
# Message to show when a pull request is created successfully
pull-request--greeting-message: 'Thanks for your contribution!'
# Size of the pull request measured by the lines of code changed.
pull-request--size-small: 50
# Size of the pull request measured by the lines of code changed.
pull-request--size-medium: 200
# Size of the pull request measured by the lines of code changed.
pull-request--size-large: 400