Skip to content

Commit

Permalink
chore: resolve security warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
agoldis committed Jan 10, 2023
1 parent 197e50a commit f89f8ed
Show file tree
Hide file tree
Showing 5 changed files with 8,344 additions and 14,454 deletions.
93 changes: 93 additions & 0 deletions .github/ISSUE_TEMPLATE/1.bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Bug report
description: Create a report to help us improve @currents/nx
labels: bug

body:
- type: checkboxes
attributes:
label: |
Before opening, please confirm:
options:
- label: I have [searched for duplicate or closed issues](https://github.com/currents-dev/currents-nx/issues) and [discussions](https://github.com/currents-dev/currents-nx/discussions).
required: true
- label: I have done my best to include a minimal, self-contained set of instructions for consistently reproducing the issue.
required: true

- type: markdown
attributes:
value: |
## Environment
- type: textarea
attributes:
label: Environment information
description: |
Please run the following command inside your project and copy/paste the output below:
```
npx envinfo --system --binaries --browsers --npmPackages --duplicates --npmGlobalPackages
```
value: |
<details>
```
# Put output below this line
```
</details>
validations:
required: true
- type: markdown
attributes:
value: |
## Details
- type: textarea
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true

- type: textarea
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true

- type: textarea
attributes:
label: Command and Setup
description: |
- The exact command or code snippet
- Your cloud provider and sorry-cypress setup details
validations:
required: true

- type: textarea
attributes:
label: Full log and debug output
description: |
Run in debug mode to provide more info - error messages and stack traces.
**Include the full log - starting from running the command till receiving an error.**
Attach a link / file for long outputs.
Linux: `DEBUG=cy2*,cypress:* cy2 run ...`
Windows: `cmd /V /C "set DEBUG=cy2*,cypress:* && cy2 run ..."`
**Be sure to remove any sensitive data.**
value: |
<details>
```
// Put your logs below this line
```
</details>
validations:
required: true
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/1.feature.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Feature Request
description: Request a new feature
labels: enhancement

body:
- type: textarea
attributes:
label: Description
description: |
Please describe the feature in details
validations:
required: true

- type: textarea
attributes:
label: Example usage
description: Please provide an example of how the feature will be used - code or command line
validations:
required: true
Loading

0 comments on commit f89f8ed

Please sign in to comment.