From d503e9696d548616fb9e80439c73f3d8e956bb82 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Tue, 4 Jun 2019 10:50:00 +0200 Subject: [PATCH] Add README --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..633f8c8 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# StaleTea + +[![Build Status](https://drone.gitea.com/api/badges/jonasfranz/staletea/status.svg)](https://drone.gitea.com/jonasfranz/staletea) +[![Go Report Card](https://goreportcard.com/badge/gitea.com/jonasfranz/staletea)](https://goreportcard.com/report/gitea.com/jonasfranz/staletea) +[![Documentation](https://godoc.org/gitea.com/jonasfranz/staletea?status.svg)](http://godoc.org/gitea.com/jonasfranz/staletea) + +StaleTea is a simple stalebot for Gitea. + +## Example config.yml + +```yaml +closecomment: This issue was closed automatically since it was marked as stale and + had no recent activity. +daysuntilclose: 7 +daysuntilstale: 60 +exemptlabels: [] +host: http://localhost:3030 +markcomment: |- + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed in %d days if no further activity occurs. Thank you + for your contributions. +only: [] +onlylabels: [] +stalelabel: wontfix +unmarkcomment: "" + +gitea: + client_id: "YOUR_CLIENT_ID" + client_secret: "YOUR_CLIENT_SECRET" + url: https://gitea.com + +session_secret: YOUR_SECRET +``` \ No newline at end of file