Skip to content

Commit c250b87

Browse files
committed
Add more github files
1 parent 49dc61a commit c250b87

7 files changed

Lines changed: 98 additions & 0 deletions

File tree

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true
10+
11+
[*.go]
12+
indent_style = tab
13+
indent_size = 2
14+
15+
[Makefile]
16+
indent_style = tab

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Default owners
2+
* @itzCozi
3+
4+
# Docs
5+
docs/** @itzCozi
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Bug]: "
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
### Describe the bug
10+
11+
### To Reproduce
12+
Steps to reproduce the behavior:
13+
14+
### Expected behavior
15+
16+
### Screenshots/Logs
17+
18+
### Environment
19+
- OS:
20+
- devbox version:
21+
- Docker version:
22+
23+
### Additional context
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature]: "
5+
labels: enhancement
6+
assignees: ''
7+
---
8+
9+
### Problem
10+
11+
### Proposal
12+
13+
### Alternatives
14+
15+
### Additional context

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Summary
2+
3+
Describe the changes and motivation.
4+
5+
## Type of change
6+
7+
- [ ] Feature
8+
- [ ] Bug fix
9+
- [ ] Docs update
10+
- [ ] Refactor/Chore
11+
12+
## How to test
13+
14+
Steps or commands to verify the change.
15+
16+
## Checklist
17+
18+
- [ ] Tests added/updated if needed
19+
- [ ] Docs updated
20+
- [ ] CI passes locally (`make ci`)

.github/SECURITY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Security Policy
2+
3+
If you discover a security issue, please do not open a public issue. Instead, email the maintainer or use GitHub Security Advisories.
4+
5+
Supported versions: the latest minor on the main branch.

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gomod"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "npm"
12+
directory: "/docs"
13+
schedule:
14+
interval: "weekly"

0 commit comments

Comments
 (0)