-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
796 additions
and
0 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,34 @@ | ||
--- | ||
name: "\U0001F41B Bug report" | ||
about: Report a bug or unexpected behavior | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Describe the bug | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
### Steps to reproduce the behavior | ||
|
||
1. Type this '...' | ||
2. View the output '....' | ||
3. See error | ||
|
||
### Expected vs actual behavior | ||
|
||
A clear and concise description of what you expected to happen and what actually happened. | ||
|
||
### Screenshots | ||
|
||
If applicable, add screenshots to help explain your problem. | ||
|
||
### Logs | ||
|
||
Paste the activity. Redact if needed. | ||
|
||
### Additional context | ||
|
||
Add any other context about the problem here. |
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,28 @@ | ||
--- | ||
name: "\U0001F4E3 Feedback" | ||
about: Give us general feedback | ||
title: '' | ||
labels: feedback | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Feedback | ||
|
||
You can use this template to give us structured feedback or just wipe it and leave us a note. Thank you! | ||
|
||
## What have you loved? | ||
|
||
_eg "adding skill in natural language is awesome!"_ | ||
|
||
## What was confusing or gave you pause? | ||
|
||
_eg "it did something unexpected"_ | ||
|
||
## Are there features you'd like to see added? | ||
|
||
_eg "Support more cloud providers, e.g Azure"_ | ||
|
||
## Anything else? | ||
|
||
_eg "have a nice day"_ |
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,20 @@ | ||
--- | ||
name: "⭐ Submit a request" | ||
about: Surface a feature or problem that you think should be solved | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Describe the feature or problem you’d like to solve | ||
|
||
A clear and concise description of what the feature or problem is. | ||
|
||
### Proposed solution | ||
|
||
How will it benefit its users? | ||
|
||
### Additional context | ||
|
||
Add any other context like screenshots or mockups are helpful, if applicable. |
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,40 @@ | ||
name: VibraniumDome CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
vibraniumdome-shields: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install Poetry | ||
run: curl -sSL https://install.python-poetry.org | python3 - | ||
|
||
- name: Install Dependencies vibraniumdome-shields | ||
run: /Users/runner/.local/bin/poetry install | ||
working-directory: vibraniumdome-shields/ | ||
|
||
- name: Workaround for missing pytorch dependencies during poetry install | ||
run: /Users/runner/.local/bin/poetry run pip install torch | ||
working-directory: vibraniumdome-shields/ | ||
|
||
- name: Run Tests vibraniumdome-shields | ||
run: /Users/runner/.local/bin/poetry run pytest | ||
working-directory: vibraniumdome-shields/ |
Oops, something went wrong.