Skip to content
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

1 setup repository #2

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.pnp.* binary linguist-generated
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Bug Issue
description: Bug report
title: "<title>"
labels: [bug]
body:
- type: input
id: title
attributes:
label: Title
description: A short title for the bug.
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Describe the observed behavior
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
description: Describe how the tool should behave when encountering this context
validations:
required: true

- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: Describe the step to follow to reproduce the bug
value: |
- [ ] 1.
- [ ] 2.
- [ ] 3.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
options:
- label: I agree to follow this project's Code of Conduct
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Task Issue
description: Describes a small task (MAKE SURE TO LINK to a corresponding 'User story','Technical story' or parent 'task' issue).
title: "<title>"
labels: [task]
body:
- type: input
id: title
attributes:
label: Title
description: A short title for the task.
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Describe the task, what should be done? / Keep it brief and simple.
validations:
required: true

- type: textarea
id: DoD
attributes:
label: Definition of done
description: Is this task a heavy task with sub tasks? Describe the tasks here.
value: |
- [ ] 1.
- [ ] 2.
- [ ] 3.
validations:
required: false

- type: textarea
id: qa
attributes:
label: QA
description: Describe how this task will be tested.
validations:
required: true

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
options:
- label: I agree to follow this project's Code of Conduct
required: true
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/technical-story.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Technical Story
description: Describes a technical story.
title: "<title>"
labels: [technical story]
body:

- type: textarea
id: description
attributes:
label: Description
description: Describe the technical chore to achieve. / Keep it brief and simple.
placeholder: What is the benefits for the developers? Why is this story revelant?
validations:
required: true

- type: textarea
id: DoD
attributes:
label: Definition of Done
description: Describe step by step what should be done at the end.
placeholder: Each checkboxes will later correspond to 'Task Issues'.
value: |
- [ ] 1.
- [ ] 2.
- [ ] 3.
validations:
required: true

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
options:
- label: I agree to follow this project's Code of Conduct
required: true
53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/user-story.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: User Story
description: Describes a user story.
title: "<title>"
labels: [user story]
body:
- type: textarea
id: description
attributes:
label: Description
description: Describe the user flow. / Keep it brief and simple.
placeholder: What is the user supposed te be able to do? Why is this story revelant?
validations:
required: true

- type: input
id: who
attributes:
label: As
description: Which kind of people will be concerned by this story?
placeholder: ex. Smart Contract Developer
validations:
required: true

- type: input
id: what
attributes:
label: I want to
description: As the target of this user story, what would I be able to do.
placeholder: ex. make something with outcome
validations:
required: true

- type: textarea
id: DoD
attributes:
label: Definition of Done
description: Describe step by step what should be done at the end.
placeholder: Each checkboxes will later correspond to 'Task Issues'.
value: |
- [ ] 1.
- [ ] 2.
- [ ] 3.
validations:
required: true

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
options:
- label: I agree to follow this project's Code of Conduct
required: true
Loading
Loading