Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
github: [JSONbored]
github:
- JSONbored
ko_fi: jsonbored
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Bug report
description: Report a problem with the AIO container, XML, or docs
title: "[Bug]: "
labels:
- bug
body:
- type: textarea
id: summary
attributes:
label: Summary
description: What is broken?
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Include Unraid version, image tag, and relevant settings
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Feature request
description: Suggest an improvement to the template, AIO image, or Unraid CA experience
title: "[Feature]: "
labels:
- enhancement
body:
- type: textarea
id: problem
attributes:
label: Problem to solve
description: What is missing, confusing, or unnecessarily hard today?
validations:
required: true
- type: textarea
id: proposed
attributes:
label: Proposed improvement
description: Describe the change you want and why it would help.
validations:
required: true
- type: textarea
id: context
attributes:
label: Additional context
description: Include app-specific, Unraid-specific, or user-experience details that matter.
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/installation_help.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Installation help
description: Get help with first-run setup, Unraid mapping choices, or upgrade behavior
title: "[Help]: "
labels:
- question
body:
- type: textarea
id: goal
attributes:
label: What are you trying to do?
description: Describe the install, upgrade, or configuration task you are working through.
validations:
required: true
- type: textarea
id: current
attributes:
label: What is happening now?
description: Include the exact symptom, error, or point where you got stuck.
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Include Unraid version, image tag, relevant template values, and whether this is a fresh install or an upgrade.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant logs or screenshots
description: Paste container logs or screenshots that will help reproduce the problem faster.
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Summary

- what changed
- why it changed

## Validation

- [ ] local smoke test passed
- [ ] docs updated if behavior changed
- [ ] XML updated if config surface changed

## Risks

- note any migration, data, or compatibility risk
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
run_smoke_test:
description: "Run the smoke-test job"
required: false
default: true
default: false
type: boolean
publish_image:
description: "Publish image tags from the current ref"
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0

smoke-test:
if: ${{ needs.detect-changes.outputs.build_related == 'true' && (github.event_name != 'workflow_dispatch' || inputs.run_smoke_test == true) }}
if: ${{ needs.detect-changes.outputs.build_related == 'true' && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch' && inputs.run_smoke_test == true)) }}
needs:
- detect-changes
- validate-template
Expand Down
19 changes: 10 additions & 9 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@

## Supported Versions

Currently only the `latest` image tag and the primary branch are supported with security updates.
Only the `main` branch, the current `latest` image tag, and the current upstream-aligned version tags are supported with security fixes.

| Version | Supported |
| ------- | ------------------ |
| latest | :white_check_mark: |
| branch | :white_check_mark: |
| older | :x: |
| Version | Supported |
| ------- | --------- |
| main | yes |
| latest | yes |
| current upstream-aligned tags | yes |
| older | no |

## Reporting a Vulnerability

Do not open public issues for suspected vulnerabilities.

- Preferred: GitHub private vulnerability report for this repository
- Fallback: email **security@aethereal.dev**
- Fallback: email `security@aethereal.dev`

Include:

- affected image tag or branch
- affected repo, branch, or image tag
- reproduction steps
- impact assessment
- any mitigation you have already confirmed
- any confirmed mitigation
4 changes: 2 additions & 2 deletions sure-aio.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ The absolute easiest way to deploy Sure on Unraid. This is a "mega-container" th
3. Wait for the WebUI. Databases are auto-provisioned securely inside the container.</Overview>
<Category>Tools: Finance: Productivity:</Category>
<WebUI>http://[IP]:[PORT:3000]</WebUI>
<TemplateURL>https://github.com/JSONbored/awesome-unraid/raw/master/sure-aio.xml</TemplateURL>
<Icon>https://raw.githubusercontent.com/JSONbored/awesome-unraid/master/icons/sure.png</Icon>
<TemplateURL>https://raw.githubusercontent.com/JSONbored/awesome-unraid/main/sure-aio.xml</TemplateURL>
<Icon>https://raw.githubusercontent.com/JSONbored/awesome-unraid/main/icons/sure.png</Icon>
<ExtraParams/>
<PostArgs/>
<CPUset/>
Expand Down
Loading