From 7e4f2f95b7362de0829b5712e8389ed834914f13 Mon Sep 17 00:00:00 2001 From: Albert Romkes Date: Tue, 24 Jun 2025 18:00:45 +0200 Subject: [PATCH] feat(dumbassets) move to stable (#36592) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move dumbassets to stable ⚒️ Fixes # **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/{incubator => stable}/dumbassets/.helmignore | 0 .../{incubator => stable}/dumbassets/CHANGELOG.md | 0 charts/{incubator => stable}/dumbassets/Chart.yaml | 8 ++++---- charts/{incubator => stable}/dumbassets/README.md | 0 charts/{incubator => stable}/dumbassets/icon.png | Bin .../dumbassets/templates/NOTES.txt | 0 .../dumbassets/templates/common.yaml | 0 charts/{incubator => stable}/dumbassets/values.yaml | 0 8 files changed, 4 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/dumbassets/.helmignore (100%) rename charts/{incubator => stable}/dumbassets/CHANGELOG.md (100%) rename charts/{incubator => stable}/dumbassets/Chart.yaml (84%) rename charts/{incubator => stable}/dumbassets/README.md (100%) rename charts/{incubator => stable}/dumbassets/icon.png (100%) rename charts/{incubator => stable}/dumbassets/templates/NOTES.txt (100%) rename charts/{incubator => stable}/dumbassets/templates/common.yaml (100%) rename charts/{incubator => stable}/dumbassets/values.yaml (100%) diff --git a/charts/incubator/dumbassets/.helmignore b/charts/stable/dumbassets/.helmignore similarity index 100% rename from charts/incubator/dumbassets/.helmignore rename to charts/stable/dumbassets/.helmignore diff --git a/charts/incubator/dumbassets/CHANGELOG.md b/charts/stable/dumbassets/CHANGELOG.md similarity index 100% rename from charts/incubator/dumbassets/CHANGELOG.md rename to charts/stable/dumbassets/CHANGELOG.md diff --git a/charts/incubator/dumbassets/Chart.yaml b/charts/stable/dumbassets/Chart.yaml similarity index 84% rename from charts/incubator/dumbassets/Chart.yaml rename to charts/stable/dumbassets/Chart.yaml index 500eb47885e..07ba7651d3a 100644 --- a/charts/incubator/dumbassets/Chart.yaml +++ b/charts/stable/dumbassets/Chart.yaml @@ -7,7 +7,7 @@ annotations: truecharts.org/category: Tools-Utilities truecharts.org/max_helm_version: "3.17" truecharts.org/min_helm_version: "3.14" - truecharts.org/train: incubator + truecharts.org/train: stable apiVersion: v2 appVersion: 1.0.11 dependencies: @@ -20,7 +20,7 @@ dependencies: import-values: [] deprecated: false description: A stupid simple asset tracker for keeping track of your physical assets, their components, and applicable warranties and routine maintenance. -home: https://truecharts.org/charts/incubator/dumbassets +home: https://truecharts.org/charts/stable/dumbassets icon: https://truecharts.org/img/hotlink-ok/chart-icons/dumbassets.webp keywords: - dumbassets @@ -34,8 +34,8 @@ maintainers: name: dumbassets sources: - https://github.com/DumbWareio/dumbassets - - https://github.com/truecharts/charts/tree/master/charts/incubator/dumbassets + - https://github.com/truecharts/charts/tree/master/charts/stable/dumbassets - https://hub.docker.com/r/dumbwareio/dumbassets type: application -version: 0.0.2 +version: 1.0.0 diff --git a/charts/incubator/dumbassets/README.md b/charts/stable/dumbassets/README.md similarity index 100% rename from charts/incubator/dumbassets/README.md rename to charts/stable/dumbassets/README.md diff --git a/charts/incubator/dumbassets/icon.png b/charts/stable/dumbassets/icon.png similarity index 100% rename from charts/incubator/dumbassets/icon.png rename to charts/stable/dumbassets/icon.png diff --git a/charts/incubator/dumbassets/templates/NOTES.txt b/charts/stable/dumbassets/templates/NOTES.txt similarity index 100% rename from charts/incubator/dumbassets/templates/NOTES.txt rename to charts/stable/dumbassets/templates/NOTES.txt diff --git a/charts/incubator/dumbassets/templates/common.yaml b/charts/stable/dumbassets/templates/common.yaml similarity index 100% rename from charts/incubator/dumbassets/templates/common.yaml rename to charts/stable/dumbassets/templates/common.yaml diff --git a/charts/incubator/dumbassets/values.yaml b/charts/stable/dumbassets/values.yaml similarity index 100% rename from charts/incubator/dumbassets/values.yaml rename to charts/stable/dumbassets/values.yaml