Skip to content

Commit 8188765

Browse files
authored
Initial commit
0 parents  commit 8188765

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+3358
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: ["bug"]
4+
body:
5+
6+
- type: textarea
7+
id: issue
8+
attributes:
9+
label: What happened?
10+
description: A clear and concise description of what the bug is.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: logs
16+
attributes:
17+
label: Relevant log output or stack trace
18+
description: |
19+
Please copy and paste any relevant log output.
20+
Add the full stack trace if available.
21+
If possible, run the failing task with `--stacktrace` flag.
22+
23+
*This will be automatically formatted into code, so there is no need for backticks.*
24+
render: shell
25+
26+
- type: textarea
27+
id: steps
28+
attributes:
29+
label: Steps to reproduce
30+
description: Steps to reproduce the behavior – provide your build configuration.
31+
validations:
32+
required: true
33+
34+
- type: input
35+
id: version
36+
attributes:
37+
label: Gradle IntelliJ Plugin version
38+
placeholder: 1.16.0
39+
validations:
40+
required: true
41+
42+
- type: input
43+
id: gradle
44+
attributes:
45+
label: Gradle version
46+
placeholder: 8.2.1
47+
validations:
48+
required: true
49+
50+
- type: dropdown
51+
id: os
52+
attributes:
53+
label: Operating System
54+
options:
55+
- macOS
56+
- Linux
57+
- Windows
58+
59+
- type: input
60+
id: url
61+
attributes:
62+
label: Link to build, i.e. failing GitHub Action job
63+
placeholder: https://github.com/username/project/actions/runs/1234567890

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Documentation
4+
url: https://github.com/JetBrains/intellij-platform-plugin-template
5+
about: Check the README file in the first place.
6+
- name: Getting Help
7+
url: https://plugins.jetbrains.com/docs/intellij/getting-help.html
8+
about: Check if you search for a help in plugin development.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
labels: ["enhancement"]
4+
body:
5+
6+
- type: textarea
7+
id: cause
8+
attributes:
9+
label: Describe the need of your request
10+
description: A clear and concise description of what the need or problem is.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: solution
16+
attributes:
17+
label: Proposed solution
18+
description: A clear and concise description of what you want to happen.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: alternatives
24+
attributes:
25+
label: Alternatives you've considered
26+
description: What did you try so far to accomplish the goal?
27+
28+
- type: textarea
29+
id: context
30+
attributes:
31+
label: Additional context
32+
description: Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Dependabot configuration:
2+
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
6+
# Maintain dependencies for Gradle dependencies
7+
- package-ecosystem: "gradle"
8+
directory: "/"
9+
target-branch: "next"
10+
schedule:
11+
interval: "daily"
12+
# Maintain dependencies for GitHub Actions
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
target-branch: "next"
16+
schedule:
17+
interval: "daily"

.github/readme/draft-release.png

64.2 KB
Loading
98.3 KB
Loading
Lines changed: 52 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)