-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from Nukesor/ci
add: CI workflows and issue templates
- Loading branch information
Showing
7 changed files
with
174 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Bug Report 🐛 | ||
description: Create a report to help improve the project | ||
labels: ["t: bug"] | ||
title: "[Bug]" | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please take the time to fill out all relevant the fields below. | ||
- type: textarea | ||
id: description-of-bug | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of the bug. | ||
placeholder: | | ||
Description goes here :) | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
Please add a code example on how to trigger the bug. | ||
Or even better, a link to a repository with a minimal reproducible setup to reproduce the bug. | ||
placeholder: | | ||
``` | ||
use libwifi::*; | ||
``` | ||
The import doesn't work! | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: debug-output | ||
attributes: | ||
label: Logs (if applicable) | ||
description: | | ||
This is mostly important for crashes or panics. | ||
Logs helps me to debug a problem if the bug is something that's not clearly visible. | ||
placeholder: | | ||
``` | ||
Some log output here | ||
``` | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: operating-system | ||
attributes: | ||
label: Operating system | ||
description: The operating system you're using. | ||
placeholder: iOS 8 / Windows 10 / Ubuntu 22.04 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: libwifi version | ||
description: The current version you're using. | ||
placeholder: v0.1.0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
placeholder: | | ||
Anything else you want to add. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
labels: ["t: feature"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please take the time to fill out all relevant the fields below. | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: A detailed description of the feature you would like to see added. | ||
description: | | ||
Explain how that feature would look like and how it should behave. | ||
placeholder: | | ||
Description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: user-story | ||
attributes: | ||
label: Explain your usecase of the requested feature | ||
description: | | ||
I need to know what a feature is going to be used for, before I can decide if and how it's going to be implemented. | ||
The more information you provide, the better I understand your problem ;). | ||
placeholder: | | ||
User story | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives | ||
description: | | ||
If your problem can be solved in multiple ways, I would like to hear the possible alternatives you've considered. | ||
Some problems really don't have any feasible alternatives, in that case don't bother answering this question :) | ||
placeholder: | | ||
Alternatives | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
placeholder: | | ||
Anything else you want to add, such as sketches, example code, etc. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
- package-ecosystem: github-actions | ||
|
||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
interval: weekly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Code Style | ||
name: Lint | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters