├── .github └── stale.yml └── README.md /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 30 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | - help-wanted 10 | # Label to use when marking an issue as stale 11 | staleLabel: stale 12 | # Comment to post when marking an issue as stale. Set to `false` to disable 13 | markComment: > 14 | This issue has been automatically marked as stale because it has not had 15 | recent activity. It will be closed if no further activity occurs. Thank you 16 | for your contributions. 17 | # Comment to post when closing a stale issue. Set to `false` to disable 18 | closeComment: This issue has been automatically closed because it has not had 19 | recent activity. Thank you for your contributions. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repo has been archived. There hasn't been much activity for a whole so it just makes sense. Thanks for everything, everyone! 2 | 3 | # H5BP lazyweb requests: get projects and ideas built 4 | 5 | The [H5BP organization](https://h5bp.github.io) is a community of developers creating open source software. This is a place to submit ideas for new projects and to get involved in building them. 6 | 7 | ## Submitting an idea or request 8 | 9 | All individual ideas start life in the [issue tracker](https://github.com/h5bp/lazyweb-requests/issues). 10 | 11 | Once an idea has been fleshed out and has interest from a group of people who want to work on it, we can create a repository and assign an initial core team to build it. That team will have full control over how the project is executed. 12 | 13 | Everyone else is free to submit pull requests to the project's repository and the core team can request that helpful contributors be added to the team. 14 | 15 | ## Requesting your project be moved to H5BP 16 | 17 | Do you have a good idea that you've already started work on? Do you want others to collaborate with you on the project and promotion? Submit an issue describing your idea and requesting that your repository be moved under the [H5BP organization](https://h5bp.github.io) and worked on by the H5BP members. 18 | --------------------------------------------------------------------------------