-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Snowiiii:master' into feat/schemas
- Loading branch information
Showing
226 changed files
with
36,523 additions
and
440,038 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
name: Bug report | ||
description: Create a bug report to help us improve | ||
name: "Bug report" | ||
description: "Create a bug report to help us improve" | ||
labels: ["bug"] | ||
assignees: Snowiiii | ||
body: | ||
- type: checkboxes | ||
id: duplicate | ||
attributes: | ||
label: I've searched existing issues and couldn't find a duplicate. | ||
description: I confirm this is not a duplicate. | ||
label: "I've searched existing issues and couldn't find a duplicate." | ||
description: "I confirm this is not a duplicate." | ||
options: | ||
- label: I confirm this is not a duplicate. | ||
- label: "I confirm this is not a duplicate." | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: What operating system are you using? | ||
description: "What operating system are you using?" | ||
placeholder: "Example: macOS Big Sur" | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Server Software Version/Commit | ||
description: What Server Software Version/Commit are you using? | ||
label: "Server Software Version/Commit" | ||
description: "What Server Software Version/Commit are you using?. (Tip: Use the /pumpkin command)" | ||
placeholder: "Example: 1.0.0/39b4cb3" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: A clear and concise description of what the bug is. | ||
label: "What happened?" | ||
description: "A clear and concise description of what the bug is." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: to-reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior | ||
label: "To Reproduce" | ||
description: "Steps to reproduce the behavior" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
label: "Expected behavior" | ||
description: "A clear and concise description of what you expected to happen." | ||
validations: | ||
required: true |
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 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: deploy-docker-image | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
docker-build-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
attestations: write | ||
id-token: write | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to GitHub CR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract Metadata | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
- name: Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Build and Push | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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 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 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 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
**Please do not report security vulnerabilities through public GitHub issues.** | ||
|
||
Instead, please send email to [email protected] | ||
|
||
You should receive a response within 48 hours. | ||
|
||
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: | ||
- Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) | ||
- Full paths of source file(s) related to the manifestation of the issue | ||
- The location of the affected source code (tag/branch/commit or direct URL) | ||
- Any special configuration required to reproduce the issue | ||
- Step-by-step instructions to reproduce the issue | ||
- Proof-of-concept or exploit code (if possible) | ||
- Impact of the issue, including how an attacker might exploit the issue | ||
|
||
**We prefer all communications to be in English.** |
Oops, something went wrong.