-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit c24da43
Showing
25 changed files
with
1,636 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,5 @@ | ||
# CODEOWNERS for Bankless ETH Buying Bot | ||
|
||
# Catch all for unspecified items | ||
# This is listed first as CODEOWNERS is chained bottom to top | ||
* @ahrenstein |
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,3 @@ | ||
# Supported methods of funding this project: | ||
|
||
github: ahrenstein |
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,42 @@ | ||
--- | ||
name: Bug Report | ||
about: Create an issue regarding a bug | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
--- | ||
|
||
Environment | ||
----------- | ||
* Host OS: | ||
* Docker Version: | ||
|
||
Problem Description | ||
------------------- | ||
``` | ||
<Insert problem description here> | ||
``` | ||
|
||
Steps to Duplicate | ||
------------------ | ||
``` | ||
<Insert steps to duplicate here> | ||
``` | ||
|
||
Expected Results | ||
---------------- | ||
``` | ||
<Insert expected results here> | ||
``` | ||
|
||
Actual Results | ||
-------------- | ||
``` | ||
<Insert actual results here> | ||
``` | ||
|
||
Relevant logs | ||
------------- | ||
``` | ||
<insert relevant logs 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,36 @@ | ||
--- | ||
name: Feature Request | ||
about: Request a new feature | ||
title: '' | ||
labels: 'feature' | ||
assignees: '' | ||
--- | ||
|
||
Environment | ||
----------- | ||
* Host OS: | ||
* Docker Version: | ||
|
||
Is your feature request related to a problem? | ||
--------------------------------------------- | ||
``` | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
``` | ||
|
||
Describe the solution you'd like | ||
-------------------------------- | ||
``` | ||
A clear and concise description of what you want to happen. | ||
``` | ||
|
||
Describe alternatives you've considered | ||
--------------------------------------- | ||
``` | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
``` | ||
|
||
Additional context | ||
------------------ | ||
``` | ||
Add any other context or screenshots about the feature request 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,24 @@ | ||
--- | ||
name: Security Issue | ||
about: Create an issue regarding security holes or bugs | ||
title: '' | ||
labels: 'security' | ||
assignees: '' | ||
--- | ||
|
||
Environment | ||
----------- | ||
* Host OS: | ||
* Docker Version: | ||
|
||
What security issue have you noticed? | ||
------------------------------------- | ||
``` | ||
<Insert security issue> | ||
``` | ||
|
||
Relevant logs | ||
------------- | ||
``` | ||
<insert relevant logs 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,38 @@ | ||
Pull Request | ||
============ | ||
What type of Pull Request is this? | ||
- [ ] Bug Report | ||
- [ ] Feature Request | ||
- [ ] Security Issue | ||
|
||
Related Issue: #123456 | ||
|
||
Short Description of original issue | ||
----------------------------------- | ||
``` | ||
<Insert short rehash here> | ||
``` | ||
|
||
How this PR resolves it | ||
----------------------- | ||
``` | ||
<Insert how this PR resolves issue here> | ||
``` | ||
|
||
Related Testing | ||
--------------- | ||
``` | ||
<Insert your testing and results here> | ||
``` | ||
|
||
List of changes | ||
--------------- | ||
``` | ||
<Insert list of repo changes here> | ||
``` | ||
|
||
Additional Notes | ||
---------------- | ||
``` | ||
<insert any additional notes 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,16 @@ | ||
name: 'Testing' | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
- name: Install pylint | ||
run: pip install pylint | ||
- name: Run pre-commit | ||
uses: pre-commit/[email protected] |
Oops, something went wrong.