Skip to content

Commit 633e1e0

Browse files
committed
update github settings
1 parent 46dba4f commit 633e1e0

File tree

3 files changed

+104
-0
lines changed

3 files changed

+104
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug Report
2+
description: Create a bug report
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
assignees:
6+
- octocat
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
validations:
13+
required: false
14+
- type: textarea
15+
id: what-happened
16+
attributes:
17+
label: 🐛What happened?
18+
description: Also tell us, what did you expect to happen?
19+
placeholder: Tell us what you see!
20+
value: "A bug happened!"
21+
validations:
22+
required: true
23+
- type: input
24+
id: WikiExtensions-version
25+
attributes:
26+
label: Wiki Extensions Version
27+
description: What version of Wiki Extensions plugin are you running?
28+
validations:
29+
required: true
30+
- type: input
31+
id: Redmine-version
32+
attributes:
33+
label: Redmine Version
34+
description: What version of Redmine are you running?
35+
validations:
36+
required: true
37+
- type: input
38+
id: Ruby-version
39+
attributes:
40+
label: Ruby Version
41+
description: What version of Ruby are you running?
42+
validations:
43+
required: false
44+
- type: dropdown
45+
id: browsers
46+
attributes:
47+
label: What browsers are you seeing the problem on?
48+
multiple: true
49+
options:
50+
- Firefox
51+
- Chrome
52+
- Safari
53+
- Microsoft Edge
54+
- Other
55+
- type: textarea
56+
id: logs
57+
attributes:
58+
label: Relevant log output
59+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
60+
render: shell

.github/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Configuration for welcome - https://github.com/behaviorbot/welcome
2+
3+
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome
4+
5+
# Comment to be posted to on first time issues
6+
newIssueWelcomeComment: >
7+
Thanks for opening your first issue here!
8+
9+
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome
10+
11+
# Comment to be posted to on PRs from first time contributors in your repository
12+
newPRWelcomeComment: >
13+
Thanks for opening this pull request!
14+
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge
15+
16+
# Comment to be posted to on pull requests merged by a first time user
17+
firstPRMergeComment: >
18+
Congrats on merging your first pull request!
19+
# It is recommended to include as many gifs and emojis as possible!

.github/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- octocat
7+
categories:
8+
- title: Breaking Changes 🛠
9+
labels:
10+
- Semver-Major
11+
- breaking-change
12+
- title: New Features 🎉
13+
labels:
14+
- Semver-Minor
15+
- enhancement
16+
- title: Bug Fixes 🐛
17+
labels:
18+
- Semver-Patch
19+
- bug
20+
- title: Translations 🌐
21+
labels:
22+
- translation
23+
- title: Other Changes 📝
24+
labels:
25+
- "*"

0 commit comments

Comments
 (0)