Skip to content

Commit

Permalink
Initial pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
ahrenstein committed Apr 12, 2021
0 parents commit c24da43
Show file tree
Hide file tree
Showing 25 changed files with 1,636 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
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
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Supported methods of funding this project:

github: ahrenstein
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
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>
```
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
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.
```
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/security-issue.md
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>
```
38 changes: 38 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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>
```
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
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]
Loading

0 comments on commit c24da43

Please sign in to comment.