├── .travis.yml ├── pull_request_template.md └── readme.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 2.2 3 | before_script: gem install awesome_bot 4 | script: awesome_bot readme.md 5 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | Please ensure your pull request adheres to the following guidelines: 2 | 3 | - [ ] Use the following format: `* [owner/repo](link)` 4 | - [ ] Link additions should be added to the bottom of the relevant category. 5 | - [ ] New categories or improvements to the existing categorization are welcome. 6 | - [ ] Search previous suggestions before making a new one, as yours may be a duplicate. 7 | - [ ] Sort by alphabetical order 8 | 9 | Thanks for contributing! -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Awesome GitHub Issues & PRs Templates [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | > [GitHub listened](https://github.com/dear-github/dear-github) and now we're able to [create templates for issues and pull requests](https://github.com/blog/2111-issue-and-pull-request-templates). 4 | 5 | > This is a curated list of templates that can offer inspiration for your project. An awesome template is one that informs contributors how to proceed in a very detailed or unique way. 6 | 7 | ![Preview](https://cloud.githubusercontent.com/assets/398893/13154626/b670c3ba-d62e-11e5-8d0d-8313abf2a8a7.png) 8 | 9 | ## :mortar_board: Instructions 10 | 11 | * [Creating an issue template for your repository](https://help.github.com/articles/creating-an-issue-template-for-your-repository/) 12 | * [Creating a pull request template for your repository](https://help.github.com/articles/creating-a-pull-request-template-for-your-repository/) 13 | 14 | ## :bomb: Templates for Issues 15 | 16 | * [angular-translate/angular-translate](https://github.com/angular-translate/angular-translate/blob/master/.github/ISSUE_TEMPLATE.md) 17 | * [appium/appium](https://github.com/appium/appium/blob/master/.github/ISSUE_TEMPLATE.md) 18 | * [bchavez/rethinkdb.driver](https://github.com/bchavez/RethinkDb.Driver/tree/master/.github/ISSUE_TEMPLATE) 19 | * [codeforamerica/howto](https://github.com/codeforamerica/howto/blob/master/issue_template.md) 20 | * [driftyco/ionic](https://github.com/driftyco/ionic/blob/master/.github/ISSUE_TEMPLATE.md) 21 | * [eddyverbruggen/toast-phonegap-plugin](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/blob/master/issue_template.md) 22 | * [growcss/growcss](https://github.com/growcss/growcss/blob/develop/.github/ISSUE_TEMPLATE.md) 23 | * [polymer/polymer](https://github.com/Polymer/polymer/blob/master/.github/ISSUE_TEMPLATE.md) 24 | * [theos/theos](https://github.com/theos/theos/blob/master/.github/ISSUE_TEMPLATE.md) 25 | * [urigo/angular-meteor](https://github.com/Urigo/angular-meteor/blob/master/.github/ISSUE_TEMPLATE.md) 26 | * [sindresorhus/ava](https://github.com/avajs/ava/blob/master/.github/issue_template.md) 27 | 28 | > [Find more `ISSUE_TEMPLATE.md` files](https://github.com/search?utf8=%E2%9C%93&q=in%3Apath+issue_template.md&type=Code&ref=searchresults) 29 | 30 | ## :rocket: Templates for Pull Requests 31 | 32 | * [angular-translate/angular-translate](https://github.com/angular-translate/angular-translate/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 33 | * [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 34 | * [bchavez/rethinkdb.driver](https://github.com/bchavez/RethinkDb.Driver/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 35 | * [driftyco/ionic](https://github.com/driftyco/ionic/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 36 | * [go-sql-driver/mysql](https://github.com/go-sql-driver/mysql/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 37 | * [theos/theos](https://github.com/theos/theos/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 38 | * [urigo/angular-meteor](https://github.com/Urigo/angular-meteor/blob/master/.github/PULL_REQUEST_TEMPLATE.md) 39 | 40 | > [Find more `PULL_REQUEST_TEMPLATE.md` files](https://github.com/search?utf8=%E2%9C%93&q=in%3Apath+pull_request_template.md&type=Code&ref=searchresults) 41 | 42 | ## :hammer: Template Generators 43 | 44 | * [Issue and Pull Request Template Generator featuring Cthulhu and Lewis Carroll](https://www.talater.com/open-source-templates/) 45 | 46 | ## :grimacing: Template Collections 47 | 48 | * [github-issue-templates](https://github.com/stevemao/github-issue-templates) 49 | 50 | ## :pencil: License 51 | 52 | [Public Domain](https://creativecommons.org/publicdomain/zero/1.0/), [Zeno Rocha](https://github.com/zenorocha) 53 | --------------------------------------------------------------------------------