From 0fdc662028c4c01f819d93a62dc09a06892de20c Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 02:58:42 -0300 Subject: [PATCH 1/6] feat: Go status badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c9ce2a8d..7fe61f18 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # go-safeweb +[![Go](https://github.com/google/go-safeweb/actions/workflows/main.yaml/badge.svg)](https://github.com/google/go-safeweb/actions/workflows/main.yaml) + **DISCLAIMER**: This is not an officially supported Google product. `go-safeweb` is a collection of libraries for writing secure-by-default HTTP From fa28a273374d866918ce22d1f51abddd831d0dfe Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 03:04:05 -0300 Subject: [PATCH 2/6] feat: status badges --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7fe61f18..a3a24bf0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # go-safeweb [![Go](https://github.com/google/go-safeweb/actions/workflows/main.yaml/badge.svg)](https://github.com/google/go-safeweb/actions/workflows/main.yaml) +[![GoDoc](https://pkg.go.dev/badge/github.com/google/go-safeweb?status.svg)](https://pkg.go.dev/github.com/google/go-safeweb?tab=doc) +[![Go Report Card](https://goreportcard.com/badge/github.com/google/go-safeweb)](https://goreportcard.com/report/github.com/google/go-safeweb) +[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) **DISCLAIMER**: This is not an officially supported Google product. From 6d375037c4c89ee7a10192cb37e8d0424a3c7b74 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 03:10:50 -0300 Subject: [PATCH 3/6] feat: CONTRIBUTING file --- CONTRIBUTING.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..7dacb0de --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,15 @@ +# Contributing + +## Issues + +Use the search tool before opening a new issue. + +Provide the expected behavior, actual behavior, steps to reproduce the problem and both version and platform. + +## Pull requests + +Open your pull request against ```master```. + +You should add/modify tests to cover your proposed code changes. + +If your pull request contains a new feature, please document it on the README. From 9ca31d07de70a4c754dc6223bcf5e5bbe1b98a79 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 03:12:26 -0300 Subject: [PATCH 4/6] feat: contributing instructions --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a3a24bf0..0d3c5224 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,7 @@ servers in Go. ## Contributing -This project is in an early stage. We are currently **not accepting** any -contributions. +Check the [Contributing file](./CONTRIBUTING.md) for instructions on how to open issues and pull requests. ## Overview From 467cb82924cd15f702cd287632fdaf3b1e0d31a4 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 03:14:00 -0300 Subject: [PATCH 5/6] Revert "feat: contributing instructions" This reverts commit 9ca31d07de70a4c754dc6223bcf5e5bbe1b98a79. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d3c5224..a3a24bf0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ servers in Go. ## Contributing -Check the [Contributing file](./CONTRIBUTING.md) for instructions on how to open issues and pull requests. +This project is in an early stage. We are currently **not accepting** any +contributions. ## Overview From 77a56839c97d13fb541e1020c478cf7f7a7dd170 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Sun, 24 Oct 2021 03:14:05 -0300 Subject: [PATCH 6/6] Revert "feat: CONTRIBUTING file" This reverts commit 6d375037c4c89ee7a10192cb37e8d0424a3c7b74. --- CONTRIBUTING.md | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 7dacb0de..00000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,15 +0,0 @@ -# Contributing - -## Issues - -Use the search tool before opening a new issue. - -Provide the expected behavior, actual behavior, steps to reproduce the problem and both version and platform. - -## Pull requests - -Open your pull request against ```master```. - -You should add/modify tests to cover your proposed code changes. - -If your pull request contains a new feature, please document it on the README.