From a77b59f68e6bad3345d4fdd427b84dfc57ce5fad Mon Sep 17 00:00:00 2001 From: Irving Date: Mon, 29 Mar 2021 10:31:59 -0500 Subject: [PATCH] feat(github templates): add githubtemplates add dependanbot file --- .github/.dependanbot.yml | 32 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 31 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/epic_issue.md | 19 ++++++++++++++++ .github/ISSUE_TEMPLATE/small_issue.md | 20 +++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++++++ 5 files changed, 118 insertions(+) create mode 100644 .github/.dependanbot.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/epic_issue.md create mode 100644 .github/ISSUE_TEMPLATE/small_issue.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/.dependanbot.yml b/.github/.dependanbot.yml new file mode 100644 index 0000000..fd96d5d --- /dev/null +++ b/.github/.dependanbot.yml @@ -0,0 +1,32 @@ +version: 2 +updates: + # Fetch and update latest `npm` packages + - package-ecosystem: npm + directory: '/' + schedule: + interval: daily + time: '00:00' + open-pull-requests-limit: 10 + reviewers: + - Irving Caamal + assignees: + - Irving Caamal + commit-message: + prefix: fix + prefix-development: chore + include: scope + # Fetch and update latest `github-actions` pkgs + - package-ecosystem: github-actions + directory: '/' + schedule: + interval: daily + time: '00:00' + open-pull-requests-limit: 10 + reviewers: + - irving caamal + assignees: + - irving caamal + commit-message: + prefix: fix + prefix-development: chore + include: scope diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..18d4e45 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +--- + + + +# Bug Report + +Bug: Not so Awesome Bug Title + +## Description + +Info about the bug goes here. + +### Steps to Reproduce + +1. Step 1 +2. Step 2 + +### Expected Result + +The expected result was... + +You may write the expected result or add a screenshot. + +### Actual Results + +The actual result was... + +Would be awesome to link screenshots here and/or error messages received. diff --git a/.github/ISSUE_TEMPLATE/epic_issue.md b/.github/ISSUE_TEMPLATE/epic_issue.md new file mode 100644 index 0000000..a80fde0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/epic_issue.md @@ -0,0 +1,19 @@ +--- +name: Epic +about: A task large enough that it needs to be divided into smaller tasks. It will usually be labeled as `enhancement`. +--- + + + +# Epic Title + +Feature: Awesome Feature Title + +## Epic Description + +This Feature will... + +## List of Tasks (Complete in order) + +1. [ ] [Task 1: Awesome Task Title](https://github.com/username/repository-name/issues/1) +2. [ ] [Task 2: Awesome Task Title](https://github.com/username/repository-name/issues/2) diff --git a/.github/ISSUE_TEMPLATE/small_issue.md b/.github/ISSUE_TEMPLATE/small_issue.md new file mode 100644 index 0000000..7123cac --- /dev/null +++ b/.github/ISSUE_TEMPLATE/small_issue.md @@ -0,0 +1,20 @@ +--- +name: Task +about: A small task that is, most likely, part of an Epic. It will usually be labeled as `good first issue`. +--- + + + +# Task Title + +Task: Awesome Task Title + +## Task Description + +This Task will... + +## Epic Parent + + + +[Feature: Awesome Feature Title](https://github.com/username/repository-name/issues/1) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..150f192 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +# Story Title + +[This is the Issue Title](https://github.com/username/repository-name/issues/1) + +## Changes made + +- made this +- did that + +## How does the solution address the problem + +This PR will... + +## Linked issues + +Resolves #1