From f18d25a33bb9c224f779e59bf8fc7b9ae1d71217 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 25 Oct 2017 14:55:18 -0500 Subject: [PATCH] add Issue template closes #38 --- .github/ISSUE_TEMPLATE.md | 33 +++++++++++++++++++ .../PULL_REQUEST_TEMPLATE.md | 0 README.md => .github/README.md | 0 3 files changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md rename PULL_REQUEST_TEMPLATE.md => .github/PULL_REQUEST_TEMPLATE.md (100%) rename README.md => .github/README.md (100%) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..4f5324073 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,33 @@ + + +_FilterLists serves as a directory for interacting with various filter lists. We do not actually maintain any lists ourselves. If your issue is regarding a rule, etc. of a specific list, please contact the maintainer of that list directly._ + +### General Issues: +* [ ] Have you verified that there are no related existing open issues that you would be duplicating? +* [ ] Have you provided enough relevant detail for others to understand and disucss your issue? + +### New or Updated Lists: + +* [ ] Have you considered submitting a [Pull Request](https://github.com/collinbarrett/FilterLists/pulls) directly to particpate as a contributor? +* [ ] Have you provided all properties available for the list (see sample below)? +* [ ] Have you converted the list name to [title case](https://en.wikipedia.org/wiki/Letter_case#Title_case)? +* [ ] Have you ensured that all URLs are functioning properly? +* [ ] Have you ensured all URLs point to HTTPS if supported? + +#### Sample List JSON Object: +[Source](https://github.com/collinbarrett/FilterLists/blob/master/data/ListSample.json) + +``` +{ + "Author": "John Doe", + "Description": "A sample list to filter out advertisements.", + "DescriptionSourceUrl": "https://mysample.list", + "DonateUrl": "https://mysample.list/donate/", + "Email": "contact@mysample.list", + "ForumUrl": "https://mysample.list/forum/", + "HomeUrl": "https://mysample.list/", + "IssuesUrl": "https://github.com/mysamplelist/issues", + "Name": "My Sample List", + "ViewUrl": "https://mysample.list/list.txt" +} +``` \ No newline at end of file diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from PULL_REQUEST_TEMPLATE.md rename to .github/PULL_REQUEST_TEMPLATE.md diff --git a/README.md b/.github/README.md similarity index 100% rename from README.md rename to .github/README.md