Skip to content

Commit

Permalink
Merge branch 'master' into bitzoic-6038
Browse files Browse the repository at this point in the history
  • Loading branch information
IGI-111 authored Jun 8, 2024
2 parents 988004d + 59dcc10 commit 90a4625
Show file tree
Hide file tree
Showing 26 changed files with 361 additions and 225 deletions.
8 changes: 4 additions & 4 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* @FuelLabs/leads

# Documentation
/docs/ @FuelLabs/tooling @FuelLabs/sway-compiler @FuelLabs/application-dev @FuelLabs/Devrel
/docs/ @FuelLabs/tooling @FuelLabs/sway-compiler @FuelLabs/swayex @FuelLabs/Devrel

# Sway files and standard library
/examples/ @FuelLabs/sway-compiler @FuelLabs/application-dev
/sway-lib-core/ @FuelLabs/sway-compiler @FuelLabs/application-dev
/sway-lib-std/ @FuelLabs/sway-compiler @FuelLabs/application-dev
/examples/ @FuelLabs/sway-compiler @FuelLabs/swayex
/sway-lib-core/ @FuelLabs/sway-compiler @FuelLabs/swayex
/sway-lib-std/ @FuelLabs/sway-compiler @FuelLabs/swayex

# Tooling
/forc/ @FuelLabs/tooling
Expand Down
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/blank_issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Blank Issue
about: Create a blank issue.
---
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Bug Report
description: Create a report to help us improve.
labels: [bug, triage]
body:
- type: markdown
attributes:
value: >
**Thank you for filing a bug report!**
- type: dropdown
id: component
attributes:
label: Related Component
description: Which component does this relate to?
options:
- compiler
- forc
- forc-deploy
- forc-lsp
- forc-fmt
- another forc plugin
- other
default: 0
validations:
required: true

- type: textarea
id: problem
attributes:
label: Problem
description: >
A clear and concise description of what the bug is,
including what currently happens and what you expected to happen.
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps
description: The steps to reproduce the bug.
placeholder: |
1.
2.
3.
validations:
required: true

- type: textarea
id: solutions
attributes:
label: Possible Solution(s)
description: >
Not obligatory, but suggest a fix/reason for the bug,
or ideas how to implement the addition or change.
- type: textarea
id: notes
attributes:
label: Notes

- type: textarea
id: components
attributes:
label: Installed components
description: Output of `fuelup check`, if using `fuelup`. Otherwise, list the relevant component(s) and version(s).
render: console
validations:
required: true
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Fuel Network & Sway Language Community Support
url: https://forum.fuel.network/
about: Please ask and answer questions here.
- name: Fuel Network Security Bug Bounty
url: https://immunefi.com/boost/fuel-network-attackathon/
about: Please report security vulnerabilities here.
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Enhancement Request
description: Suggest an enhancement for this project.
labels: [enhancement, triage]
body:
- type: markdown
attributes:
value: >
**Thank you for filing an enhancement request!**
- type: dropdown
id: component
attributes:
label: Related Component
description: Which component does this relate to?
options:
- compiler
- forc
- forc-deploy
- forc-lsp
- forc-fmt
- another forc plugin
- other
default: 0
validations:
required: true

- type: textarea
id: problem
attributes:
label: Problem you are trying to solve
description: >
A clear and concise description of the problem this enhancement request is trying to solve.
validations:
required: true

- type: textarea
id: solution
attributes:
label: Solution you'd like
description: >
A clear and concise description of what you want to happen.
validations:
required: true

- type: textarea
id: notes
attributes:
label: Notes
description: >
Any additional context or information you feel may be relevant to the issue.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ sway-lsp/tests/**/Forc.lock
forc-plugins/forc-debug/tests/**/Forc.lock

# Generated files in example directories
examples/**/Forc.lock
examples/**/*/Forc.lock
docs/reference/src/code/examples/**/*/Forc.lock
Loading

0 comments on commit 90a4625

Please sign in to comment.