Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update issue templates #9

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
141ef00
all: clean up repo ahead of rename to amp
tav Aug 3, 2019
18e2412
gitignore: simplify/update the list of excluded paths
tav Aug 3, 2019
ca9f98d
UNLICENSE: improve text + switch to markdown format
tav Aug 3, 2019
8c89030
AUTHORS: incorporate developer certificate of origin-esque wording
tav Aug 3, 2019
40484f4
README: update to reflect current status
tav Aug 3, 2019
243e522
CODE_OF_CONDUCT: set the tone for the community we want to build
tav Aug 3, 2019
86bbac6
go: specify the root module
tav Aug 3, 2019
1601788
pkg/overflow: add package for detecting integer overflows
tav Aug 3, 2019
6976504
environ: add common bash setup + initial CI script
tav Aug 3, 2019
fd78ca7
gitignore: exclude the generated coverage.txt file
tav Aug 3, 2019
3643f50
circleci: define the initial configuration
tav Aug 3, 2019
79641cb
README: point last commit badge at GitHub commits list
tav Aug 3, 2019
ee2dd10
website/ampify.dev: add stub site with custom Go import path support
tav Aug 3, 2019
3b90c33
website: add README about the dev websites
tav Aug 3, 2019
1e933ca
SECURITY: add explicit security policy with a 30-day disclosure policy
tav Aug 3, 2019
235cb25
CODEOWNERS: define a default owner for reviewing PRs
tav Aug 3, 2019
36670c2
website/ampify.dev: add endpoint to redirect to the Slack invite link
tav Aug 3, 2019
6246fdb
README: update links for the Slack and contribute badges
tav Aug 3, 2019
b1c6e89
pkg/bytesize: add package for dealing with byte size values
tav Aug 4, 2019
271639a
Update issue templates
tav Aug 4, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang@sha256:a06ff94ee3c06ad3e0d438c9a7459467c4033cd350c5e15a50323e90ef6dee4f # 1.12.7
steps:
- checkout
- setup_remote_docker
- restore_cache:
keys:
- mod-{{ checksum "go.mod" }}
- run:
command: environ/ci.sh
name: Build and test
- save_cache:
key: mod-{{ checksum "go.mod" }}
paths:
- /go/pkg/mod
- run:
command: |
bash <(curl -s https://codecov.io/bash)
name: Upload coverage report
when: on_success
working_directory: /go/src/ampify.dev
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---


20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
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.
79 changes: 12 additions & 67 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,75 +1,20 @@
# specific files/directories
# System-wide excludes

.articlestore
.build
.build-lock
.latest
*.DS_Store

build
# Generated files

doc/website/*.html
environ/local
environ/receipts
coverage.txt
*.gen.go
*.pb.go

# hidden files/directories
# Go-related

.bzr
.bzrignore
.DS_Store
.hg
.hgignore
.lock-wscript
.sass-cache
.sconsign*
.svn

# file patterns

*#*
*~
*.5
*.6
*.8
*.a
*.dylib
*.dSYM
*.egg
*.jar
*.la
*.lo
*.o
*.out
*.pyc
*.pyo
*.so
*.swp
*.tar.bz2
*.tar.gz
*.tbz
*.tbz2
*.tgz
*.rdb

_testmain.go

# file patterns (xcode)

*.mode1v3
*.mode2v3
*~.nib
*.pbxuser
*.perspective
*.perspectivev3
*.swp
*.tm_build_errors
cpu.prof
mem.prof

# file patterns (windows)
# NodeJS-related

*.dll
*.exe
*.ilk
*.lib
*.ncb
*.pdb
*.suo
*.vcproj.*.*.user
node_modules
package-lock.json
16 changes: 0 additions & 16 deletions .gitreview/config.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions .gitreview/watchlist.yaml

This file was deleted.

75 changes: 46 additions & 29 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,59 @@
Ampify Authors
==============
# Amp Authors

This is the official list of the Ampify Authors ("The Authors"):
This is the official list of the Amp Authors ("The Authors"):

<!-- Please keep this listing ordered by "Nick", thanks! -->
<!-- Please keep this list sorted alphabetically, thanks! -->

| Name | Nick | Email | Location |
| -------------------------- | ------------------ | ------------------------ | -------------- |
| [anatoly techtonik] | `techtonik` | techtonik@gmail.com | Belarus |
| [Ben Laurie] | `benlaurie` | ben@links.org | U.K. |
| [Mamading Ceesay] | `evangineer` | mamading@gmail.com | U.K. |
| [Maciej Fijalkowski] | `fijal` | fijall@gmail.com | Europe |
| [Benjamin Peterson] | `gutworth` | benjamin@python.org | U.S.A |
| [James Arthur] | `thruflo` | thruflo@googlemail.com | U.K. |
| [Jeff Archambeault] | `jeffarch` | jjarchambeault@gmail.com | U.S.A |
| [Seyi Ogunyemi] | `micrypt` | me@micrypt.com | U.K. |
| [Maciej Fijalkowski] | `fijal` | fijall@gmail.com | Europe |
| [Mamading Ceesay] | `evangineer` | mamading@gmail.com | U.K. |
| [Mathew Ryden] | `oierw` | mathew@oierw.net | U.S.A. |
| [Tom Salfield] | `salfield` | tom@open.coop | U.K. |
| [Sean B. Palmer] | `sbp` | sean@miscoranda.com | U.K. |
| [Yan Minagawa] | `t` | t@c-base.org | Germany |
| [Seyi Ogunyemi] | `micrypt` | me@micrypt.com | U.K. |
| [tav] | `tav` | tav@espians.com | U.K. |
| [anatoly techtonik] | `techtonik` | techtonik@gmail.com | Belarus |
| [James Arthur] | `thruflo` | thruflo@googlemail.com | U.K. |
| [Tom Salfield] | `salfield` | tom@open.coop | U.K. |
| [Yan Minagawa] | `t` | t@c-base.org | Germany |

By adding yourself to this list, you are affirming that all Contributions that
you make to Amp ("The Work") are:

- Created in whole or in part by yourself, and that you have the right to submit
it under the terms of the UNLICENSE and voluntarily elect to place it into the
Public Domain by waiving all copyright, patent and related or neighboring
rights to it as specified in the [`UNLICENSE.md`] file; or

- Based on Third Party Work that, to the best of your knowledge, is covered
under an appropriate open source license which gives you the right to submit
that work with modifications under the same open source license as indicated
in the contents of the files pertaining to that Contribution or defined within
a top-level [`THIRDPARTY.md`] file.

You also acknowledge that this is a public project and that all Contributions
you make, the record of those Contributions, along with any personal information
that you submit with them, are intended to be maintained indefinitely, and may
be redistributed via any medium.

[`thirdparty.md`]: THIRDPARTY.md
[`unlicense.md`]: UNLICENSE.md

<!-- Please keep these links in the same order as the authors list above, thanks! -->

By adding yourself to this list, you explicitly agree to affirm all of your
Contributions to Ampify ("The Work") to be covered by the UNLICENSE found in
the `UNLICENSE.md` file.

<!-- Please keep these links in the same order as above, thanks! -->

[Ben Laurie]: https://github.com/benlaurie
[Mamading Ceesay]: https://github.com/evangineer
[Maciej Fijalkowski]: https://github.com/fijal
[Benjamin Peterson]: https://github.com/gutworth
[Jeff Archambeault]: https://github.com/jeffarch
[Seyi Ogunyemi]: https://github.com/micrypt
[Mathew Ryden]: https://github.com/oierw
[Tom Salfield]: https://github.com/salfield
[Sean B. Palmer]: https://github.com/sbp
[Yan Minagawa]: https://t.crew.c-base.org/
[tav]: https://github.com/tav
[anatoly techtonik]: https://github.com/techtonik
[James Arthur]: https://github.com/thruflo
[ben laurie]: https://github.com/benlaurie
[benjamin peterson]: https://github.com/gutworth
[james arthur]: https://github.com/thruflo
[jeff archambeault]: https://github.com/jeffarch
[maciej fijalkowski]: https://github.com/fijal
[mamading ceesay]: https://github.com/evangineer
[mathew ryden]: https://github.com/oierw
[sean b. palmer]: https://github.com/sbp
[seyi ogunyemi]: https://github.com/micrypt
[tav]: https://github.com/tav
[tom salfield]: https://github.com/salfield
[yan minagawa]: https://t.crew.c-base.org/
8 changes: 8 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file defines who will be automatically requested for review whenever
# someone opens a PR with files matching a specified filepath pattern.
#
# See https://help.github.com/en/articles/about-code-owners for more info.
#
# KEEP THIS FILE SORTED. Order is important. Last match takes precedence.

* @tav
Loading