-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: configure issue chooser, add task template, warn against blank…
… template use
- Loading branch information
Showing
3 changed files
with
41 additions
and
2 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,13 @@ | ||
<!-- | ||
--------------------------------------------------- | ||
DO NOT SUBMIT | ||
--------------------------------------------------- | ||
This is a blank issue template. It is not intended to be used. | ||
Questions, feature requests, sharing ideas, getting feedback and general discussions should be asked here: https://github.com/mistakia/nano-community/discussions/new/choose | ||
If you are opening an issue to track tasks, please select the task template here: https://github.com/nanocurrency/nano-node/issues/new/choose | ||
--> |
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Nano.Community Discussions | ||
url: https://github.com/mistakia/nano-community/discussions | ||
about: For general questions and discussions (not node related) | ||
url: https://github.com/mistakia/nano-community/discussions/new/choose | ||
about: For questions, feature requests, sharing ideas, getting feedback and general discussions. | ||
- name: Nano Node | ||
url: https://github.com/nanocurrency/nano-node/issues/new/choose | ||
about: For reporting bugs, security vulnerability and requesting new features related to the Nano Node reference implementation (C++). |
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,23 @@ | ||
name: Nano.Community Task | ||
description: For tracking tasks to be carried out by a community member (should be created by repo maintainer or task assignee). | ||
title: '[Type] - [Task Title]' | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: 'Objective' | ||
description: 'A brief description of what the objectives are' | ||
value: | | ||
## Objective | ||
- Objective 1 | ||
- Objective 2 | ||
- type: markdown | ||
attributes: | ||
label: 'Tasks' | ||
description: 'A list of tasks and/or sub-tasks to be carried out by a community member' | ||
value: | | ||
## Tasks | ||
- [ ] Task 1 | ||
- [ ] Sub-task 1 | ||
- [ ] Sub-task 2 | ||
- [ ] Task 2 | ||
- [ ] Task 3 |