Skip to content

Commit 24f485e

Browse files
authored
Sync branch [skip ci]
2 parents 5dd2935 + 45bb580 commit 24f485e

File tree

5 files changed

+112
-0
lines changed

5 files changed

+112
-0
lines changed

.github/ISSUE_TEMPLATE/Bug_report.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Bug report
2+
description: Report a bug so we can get to squashing it.
3+
labels: bug
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
attributes:
11+
label: Description
12+
description: Please write a brief description of the bug, including what you expect to happen and what is currently happening.
13+
placeholder: |
14+
Feature '...' is not working properly. I expect '...' to happen, but '...' happens instead
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
attributes:
20+
label: Step-by-step reproduction instructions
21+
description: Please write the steps needed to reproduce the bug.
22+
placeholder: |
23+
1. Go to '...'
24+
2. Click on '...'
25+
3. Scroll down to '...'
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
attributes:
31+
label: Screenshots, screen recording, code snippet or Help Scout ticket
32+
description: |
33+
If possible, please upload a screenshot or screen recording which demonstrates the bug.
34+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
35+
Tip: You can include links to customer Help Scout support thread.
36+
validations:
37+
required: false
38+
39+
- type: input
40+
attributes:
41+
label: Environment info
42+
description: |
43+
Please share a https://pastebin.com/ link of your system details by going to site Admin -> Tools -> Site Health -> Info and Copy to Clipboard
44+
placeholder: pastebin.com/ ...
45+
validations:
46+
required: false
47+
48+
- type: dropdown
49+
id: regression
50+
attributes:
51+
label: Is the issue you are reporting a regression
52+
description: |
53+
i.e, a previously working feature/functionality is now broken?
54+
By specifying whether or not your issue is a regression, it will help the development team to more effectively diagnose and resolve the problem.
55+
56+
multiple: false
57+
options:
58+
- 'No'
59+
- 'Yes, this is a regression.'
60+
validations:
61+
required: true
62+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Feature request
2+
description: Suggest a feature that we can implement.
3+
labels: new feature
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: What problem does this address?
8+
description: |
9+
Can you give us a little more insight into this feature request? We'd love to know if it's related to any problems or pain points you've been facing.
10+
If so, can you please let us know what the issue is in a clear and simple way?
11+
Tip: If this is related to a customer request, please add the Help Scout thread URL.
12+
placeholder: |
13+
For example, something like "I find it tough when..." or "I get frustrated because..." would be great.
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: What is your proposed solution?
19+
description: Can you please specify the desired feature or improvement and how it resolves the problem mentioned?
20+
validations:
21+
required: false

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
version: 2
3+
updates:
4+
5+
# Maintain dependencies for Composer
6+
- package-ecosystem: "composer"
7+
directory: "/"
8+
target-branch: "development"
9+
schedule:
10+
interval: "weekly"

.github/labeler.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
regression:
2+
- '(Yes, this is a regression)'
3+
4+
customer report:
5+
- '(helpscout)'

.github/workflows/issue-labeler.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Issue Labeler"
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
triage:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: github/issue-labeler@master
11+
with:
12+
repo-token: "${{ secrets.BOT_TOKEN }}"
13+
enable-versioned-regex: 0
14+
configuration-path: .github/labeler.yml

0 commit comments

Comments
 (0)