Skip to content

Commit ab323f6

Browse files
committed
Initial commit
As discussed and reviewed in #98
0 parents  commit ab323f6

12 files changed

+1920
-0
lines changed
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: "\U0001F41E Bug report"
3+
about: 'Create a report to help us improve. To report a security vulnerability, please
4+
see below or the SECURITY.md file at the root of the repository. Do not open a GitHub
5+
issue. '
6+
title: ''
7+
labels: bug
8+
assignees: ''
9+
10+
---
11+
12+
## Description
13+
A clear and concise description of what the bug is.
14+
15+
## How To Reproduce
16+
Steps to reproduce the behavior:
17+
1. `git clone ...`
18+
2. `native-image ...`
19+
3. `mycmd ...`
20+
21+
### Configuration:
22+
- OS: [e.g. Ubuntu 18.04, Fedora 32]
23+
- Architecture: [e.g. AMD64, A]
24+
- Mandrel version: [e.g. 20.1.0.0.Alpha1]
25+
- JDK version: [e.g. OpenJDK 11.0.8+5]
26+
27+
## Expected behavior
28+
A clear and concise description of what you expected to happen.
29+
```
30+
Expected output
31+
```
32+
33+
## Additional context
34+
Add any other context about the problem here.
35+
```
36+
Add logs and stack traces here
37+
```
38+
If applicable, add screenshots to help explain your problem.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "\U0001F9E9 Feature request"
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Need help or have a question?
4+
url: https://www.graalvm.org/slack-invitation/
5+
about: Visit our slack channel.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Mark stale issues and PRs
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- .github/workflows/**
9+
schedule:
10+
- cron: '0 3 * * *'
11+
12+
jobs:
13+
mark-stale-issues-and-prs:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v3
17+
with:
18+
repo-token: ${{ secrets.GITHUB_TOKEN }}
19+
stale-issue-message: 'This issue appears to be stale because it has been open 30 days with no activity. This issue will be closed in 7 days unless `Stale` label is removed or a new comment is made.'
20+
stale-pr-message: 'This PR appears to be stale because it has been open 30 days with no activity. This PR will be closed in 7 days unless `Stale` label is removed or a new comment is made.'
21+
days-before-stale: 30
22+
days-before-close: 7

0 commit comments

Comments
 (0)