-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from irvv17/feature-github-templates-dependanbot
feat(github templates): add githubtemplates
- Loading branch information
Showing
5 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates. --> | ||
|
||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. | ||
--- | ||
|
||
<!-- Issue title should mirror the Epic Title. --> | ||
|
||
# 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. | ||
--- | ||
|
||
<!-- Issue title should mirror the Task Title. --> | ||
|
||
# Task Title | ||
|
||
Task: Awesome Task Title | ||
|
||
## Task Description | ||
|
||
This Task will... | ||
|
||
## Epic Parent | ||
|
||
<!-- The link below should link to its Epic Parent. --> | ||
|
||
[Feature: Awesome Feature Title](https://github.com/username/repository-name/issues/1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |