diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md index 8c4cab1fb..8d4faac76 100644 --- a/.github/ISSUE_TEMPLATE/---bug-report.md +++ b/.github/ISSUE_TEMPLATE/---bug-report.md @@ -2,23 +2,21 @@ name: "\U0001F41B Bug report" about: Create a report to help us improve title: '' -labels: 'Community: Report :bug:, Awaiting Reproduction, Triage :white_flag:' +labels: 'Community: Report :bug:, Awaiting Reproduction' assignees: '' --- -> **Before Creating an issue** -> -> - Are you running the latest version? -> - Are you reporting to the correct repository? -> - Did you search existing issues? - -## Bug Report + + + + + ### Describe the Bug _A clear and concise description of what the bug is._ -### What steps can we follow to reproduce the bug? +### Steps to Reproduce: 1. First step 2. Second step @@ -28,6 +26,15 @@ _A clear and concise description of what the bug is._ Please use code blocks to show formatted errors or code snippets ``` +### The current behavior + +_A clear and concise description of what happens instead of the expected +behavior._ + +### The expected behavior + +_A clear and concise description of what you expected to happen._ + > :warning: Reports we cannot reproduce are at risk of being marked stale and > closed. The more information you can provide, the more likely we are to look > into and address your issue. diff --git a/.github/ISSUE_TEMPLATE/---feature-request.md b/.github/ISSUE_TEMPLATE/---feature-request.md index d0cabe09f..cff3c6a96 100644 --- a/.github/ISSUE_TEMPLATE/---feature-request.md +++ b/.github/ISSUE_TEMPLATE/---feature-request.md @@ -2,19 +2,28 @@ name: "\U0001F680 Feature request" about: Suggest an idea for this project title: '' -labels: 'Community: Request :hand:, Triage :white_flag:' +labels: 'Community: Request :hand:' assignees: '' --- -> :hand: Many people requests features. Tell us why yours is important to the + + + + -## Request +### Request + + **What feature or change would you like to see made?** diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 4a5623153..9b9fa9d7a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,14 +1,91 @@ -### PR Checklist - -- [ ] Brief description of changes -- [ ] Links to any relevant issues -- [ ] Required status checks are passing -- [ ] User cases if changes impact the user's experience -- [ ] `@mention` a maintainer to request a review + + + + +⚠️⚠️ Please make sure the checklist section below is complete before submitting your PR. +To complete the checklist, add an 'x' to each item: [] -> [x] +(PRs that do not have all the checkboxes marked will not be approved) +--> + +### Context + + + +### Changes & Results + + + +### Testing + + + +### Checklist + +#### PR + + + +- [] My Pull Request title is descriptive, accurate and follows the + semantic-release format and guidelines. + +#### Code + +- [] My code has been well-documented (function documentation, inline comments, + etc.) + +#### Public Documentation Updates + + + +- [] The documentation page has been updated as necessary for any public API + additions or removals. + +#### Tested Environment + +- [] "OS: +- [] "Node version: +- [] "Browser: + [blog]: https://circleci.com/blog/triggering-trusted-ci-jobs-on-untrusted-forks/ diff --git a/.github/stale.yml b/.github/stale.yml index 0d11ecb91..4d6cdd4e3 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -4,23 +4,17 @@ # Number of days of inactivity before an issue becomes stale daysUntilStale: 180 # Number of days of inactivity before a stale issue is closed -daysUntilClose: 9000 +daysUntilClose: 60 # Issues with these labels will never be considered stale exemptLabels: - - 'Story :raised_hands:' - 'Bug: Verified :bug:' - - 'Task: CI/Tooling :robot:' - - 'Task: Docs 📖' - - 'Task: Docs :book:' - - 'Task: Refactor :hammer_and_wrench:' - - 'Task: Tests :microscope:' - 'PR: Awaiting Review 👀' - - 'Triage :white_flag:' - - 'Extension: Discussion' - 'Announcement 🎉' - 'IDC:priority' - 'IDC:candidate' - 'IDC:collaboration' + - 'Community: Request :hand:' + - 'Community: Report :bug:' # Label to use when marking an issue as stale staleLabel: 'Stale :baguette_bread:' # Comment to post when marking an issue as stale. Set to `false` to disable