diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..429fc8a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,44 @@ +--- +name: "\U0001F41B Bug report" +about: Create a bug report to help improve the Aptos Typescript SDK +title: "[Bug] " +labels: bug +assignees: '' + +--- + +# 🐛 Bug Description + + + +## How to reproduce + +**Code snippet to reproduce** +```typescript +// Your code goes here +// Please make sure to list any dependencies +``` + +**Stack trace / error message** +``` +// Paste the output here +``` + +## Expected Behavior + + + +## System information + +**System details:** +- Typescript SDK Version +- Platform (e.g. Node, browser, etc.) + +## Additional context + +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..708522c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: Questions and Help (on Aptos Developer Discussions) + url: (https://github.com/aptos-labs/aptos-developer-discussions/discussions + about: Support and other Questions are handled by the team and the community on Aptos Developer Discussions. + - name: Questions, Help and Chat (on Discord) + url: https://discord.gg/aptosnetwork + about: Contact the development team, contributors and community on Discord diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..cd05f8b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,33 @@ +--- +name: "\U0001F680 Feature request" +about: Suggest a new feature in the Aptos Typescript SDK +title: "[Feature Request] " +labels: enhancement +assignees: '' + +--- + +# 🚀 Feature Request Description + + + +## Motivation + +**Is your feature request related to a problem? Please describe you use case.** + + + + +## Pitch + +**Describe the solution you would like** + + +**Describe alternatives you've considered** + + +**Are you willing to open a pull request?** (See [CONTRIBUTING](../../CONTRIBUTING.md)) + +## Additional context + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..54752a7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +### Description + + +### Test Plan + + +### Related Links + \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..0178987 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,9 @@ +# **Please** keep this file ordered alphabetically by directory paths. + +# Owners for the `.github` directory and all its subdirectories. + +/.github/ @aptos-labs/developer-platform @aptos-labs/security + +# Auto-reviewers for all code + +* @aptos-labs/developer-platform @davidiw @gregnazario