-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new issue template for epic level issues #21
Open
BlocksOnAChain
wants to merge
12
commits into
master
Choose a base branch
from
Dragan---New-issue-template-for-epics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f692490
Create Epics template.yml
BlocksOnAChain 5903187
Update Epics template.yml
BlocksOnAChain b37c2b6
Update Epics template.yml
BlocksOnAChain 3a95dca
Update Epics template.yml
BlocksOnAChain 745994f
Update Epics template.yml
BlocksOnAChain e7cb9b1
Update Epics template.yml
BlocksOnAChain 3c886b0
Update Epics template.yml
BlocksOnAChain 7eac9b1
Update Epics template.yml
BlocksOnAChain 499badf
Update Epics template.yml
BlocksOnAChain 9b38529
Update Epics template.yml
BlocksOnAChain febaa34
Update Epics template.yml
BlocksOnAChain 9dda3ae
Update Epics template.yml
BlocksOnAChain File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,59 @@ | ||
name: Epic Template # Ensure no extra characters before "name" | ||
description: High level issue for tracking an Epic. | ||
title: "Epic: " | ||
labels: ["Epic"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: High level description of Epic. | ||
value: A brief description of the Epic. What problem are we trying to solve? What value will it deliver? | ||
validations: | ||
required: true | ||
- type: markdown | ||
id: user stories | ||
attributes: | ||
label: User Stories | ||
value: | | ||
List of User Stories associated with this Epic. | ||
* User Story 1: (brief description) | ||
* User Story 2: (brief description) | ||
- type: markdown | ||
id: acceptance criteria | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto |
||
attributes: | ||
label: Acceptance Criteria | ||
value: | | ||
Define the criteria for considering the Epic complete. | ||
* Acceptance Criteria 1 | ||
* Acceptance Criteria 2 | ||
- type: markdown | ||
id: prs-dependencies-blockers | ||
attributes: | ||
label: PRs, Dependencies and potential blockers of this Epic | ||
value: | | ||
List any Pull Requests (PRs) related to this Epic. | ||
Describe any dependencies and potential blockers for the Epic. | ||
Example: We are working on smart contract changes in order to deliver a new feature to our users. | ||
Or This Epic is blocked by issue #34. | ||
validations: | ||
required: true | ||
- type: markdown | ||
id: related issues | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here as well |
||
attributes: | ||
label: Related Issues (Checklist) | ||
value: | | ||
**Checklist:** | ||
- [ ] Issue #1: (brief description) | ||
- [ ] Issue #2: (brief description) | ||
- [ ] You can add more issues here following the same format. | ||
|
||
**Note:** This checklist is for informational purposes only. You will need to manage the state of the issues manually. | ||
- type: checkboxes | ||
id: label-check | ||
attributes: | ||
label: Label Checks | ||
options: | ||
- label: I have added the team label(s) for this Epic. | ||
required: true | ||
- label: I have linked this Epic to its corresponding Project(s). (optional, adjust as needed) | ||
required: false |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Not sure if spaces in the id cause any issues, I recommend adding hyphens as done for other ids in this file.