From 707b6497e8ea3267760edffc9091934dcb9fbc7c Mon Sep 17 00:00:00 2001 From: Kieran Brahney Date: Sun, 15 Mar 2020 16:50:14 +0000 Subject: [PATCH] Added templates --- .github/ISSUE_TEMPLATE.md | 15 +++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ .github/stale.yml | 23 +++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/stale.yml diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..d52fcad4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,15 @@ +### Subject of the issue +Describe your issue here. + +### Your environment +* version of this package: +* version of Laravel: + +### Steps to reproduce +Tell us how to reproduce this issue. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..c9969a2f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +### Description + +What does this achieve? + +Is it necessary to merge into core or can it be overridden using existing features? diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 00000000..071d37a7 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,23 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - bug + - "help wanted" + - "MERGE ME" + - "NEEDS REVIEW" +# Ignore issues in a milestone +exemptMilestones: true +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue/proposal has been automatically marked as idle and stale because it hasn't + had any recent activity. It will be automtically closed if no further activity + occurs. If you think this is wrong, or the problem still persists, just pop + a reply in the comments and one of the maintainers will (try!) to follow up. + Thank you for contributing :) +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false \ No newline at end of file