Skip to content

Commit

Permalink
M2
Browse files Browse the repository at this point in the history
  • Loading branch information
o-tsaruk committed Aug 10, 2023
0 parents commit 15d58de
Show file tree
Hide file tree
Showing 126 changed files with 18,871 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: 🐞 Bug
description: File a bug/issue
title: "bug: <title>"
labels: ["type: bug", "status: triage needed"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
validations:
required: true
- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **Browser**: Google Chrome Version 112.0.5615.137 (Official Build) (arm64)
value: |
- OS:
- Browser:
render: markdown
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: true
contact_links:
- name: ❓ Question
url: https://discord.com/channels/1060530809309761586/1118159566929154202
about: Ask a question about Patron
- name: 📖 Patron Documentation
url: https://patron.works/getting-started
about: The Patron documentation may answer your questions!
- name: 💬 Patron Community Support (Discord)
url: https://discord.com/channels/1060530809309761586/1118159566929154202
about: Please ask and answer questions here.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: ✨ Enhancement request
description: Request a new enhancement
title: "enhancement request: <title>"
labels: ["type: enhancement", "status: triage needed"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to improve Patron!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the enhancement you are requesting.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Enhancement description
description: Please describe the enhancement you would like Patron to have
validations:
required: true
- type: textarea
attributes:
label: 🧑‍💻 Implementation
description: If you are a developer and have an idea how to implement this enhancement, please sketch it out here.
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
18 changes: 18 additions & 0 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Build workspace"

on:
push:
branches:
- master

jobs:
default:
name: Default package
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v21
- name: Build the default package
run: nix build .# -L
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.direnv
/result
/target
/Config.toml
Loading

0 comments on commit 15d58de

Please sign in to comment.