-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Polyfrost/website/icon-fix
- Loading branch information
Showing
209 changed files
with
10,130 additions
and
4,711 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
This file was deleted.
Oops, something went wrong.
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,61 +1,61 @@ | ||
name: 🐞 Bug Report | ||
description: Report a bug | ||
labels: | ||
- kind/bug | ||
- status/needs-triage | ||
- kind/bug | ||
- status/needs-triage | ||
|
||
body: | ||
- type: checkboxes | ||
id: product | ||
attributes: | ||
label: Product name | ||
description: What Polyfrost product are you using? | ||
options: | ||
- label: Website | ||
- label: Launcher | ||
- label: Installer | ||
- type: checkboxes | ||
id: product | ||
attributes: | ||
label: Product name | ||
description: What Polyfrost product are you using? | ||
options: | ||
- label: Website | ||
- label: Launcher | ||
- label: Installer | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
## First of all | ||
1. Please search for [existing issues](https://github.com/polyfrost/nexus/issues?q=is%3Aissue) about this problem first. | ||
2. Make sure it's an issue with our products and not something else you are using. | ||
3. Remember to follow our community guidelines and be friendly. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## First of all | ||
1. Please search for [existing issues](https://github.com/polyfrost/nexus/issues?q=is%3Aissue) about this problem first. | ||
2. Make sure it's an issue with our products and not something else you are using. | ||
3. Remember to follow our community guidelines and be friendly. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear description of what the bug is. Include screenshots if applicable. | ||
placeholder: Bug description | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear description of what the bug is. Include screenshots if applicable. | ||
placeholder: Bug description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. Go to ... | ||
2. Click on ... | ||
3. See error | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. Go to ... | ||
2. Click on ... | ||
3. See error | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear description of what you expected to happen. | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear description of what you expected to happen. | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Stack trace (optional) | ||
render: Shell | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Stack trace (optional) | ||
render: Shell | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,28 +1,28 @@ | ||
name: Setup Node.js, pnpm and dependencies | ||
description: Setup Node.js, pnpm and dependencies | ||
inputs: | ||
token: | ||
description: Github token | ||
required: false | ||
default: '' | ||
token: | ||
description: Github token | ||
required: false | ||
default: '' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8.x.x | ||
using: composite | ||
steps: | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
token: ${{ inputs.token }} | ||
check-latest: true | ||
node-version-file: '.nvmrc' | ||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
token: ${{ inputs.token }} | ||
check-latest: true | ||
node-version-file: .nvmrc | ||
|
||
- name: Install pnpm deps | ||
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }} | ||
env: | ||
NODE_ENV: debug | ||
GITHUB_TOKEN: ${{ inputs.token }} | ||
run: pnpm i --frozen-lockfile | ||
- name: Install pnpm deps | ||
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }} | ||
env: | ||
NODE_ENV: debug | ||
GITHUB_TOKEN: ${{ inputs.token }} | ||
run: pnpm i --frozen-lockfile |
Oops, something went wrong.