From e6ccc022a72e310b78ff07e14313eeb58e4ca62e Mon Sep 17 00:00:00 2001 From: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Date: Thu, 27 Jul 2023 05:05:51 -0400 Subject: [PATCH] feat(seedsync): Move to Stable (#10878) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Testing working, so moving it over, super simple app anywhere ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ 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}/seedsync/.helmignore | 0 charts/{incubator => stable}/seedsync/CHANGELOG.md | 0 charts/{incubator => stable}/seedsync/Chart.yaml | 2 +- charts/{incubator => stable}/seedsync/README.md | 0 charts/{incubator => stable}/seedsync/icon.png | Bin .../{incubator => stable}/seedsync/questions.yaml | 0 .../seedsync/templates/NOTES.txt | 0 .../seedsync/templates/common.yaml | 0 charts/{incubator => stable}/seedsync/values.yaml | 0 9 files changed, 1 insertion(+), 1 deletion(-) rename charts/{incubator => stable}/seedsync/.helmignore (100%) rename charts/{incubator => stable}/seedsync/CHANGELOG.md (100%) rename charts/{incubator => stable}/seedsync/Chart.yaml (98%) rename charts/{incubator => stable}/seedsync/README.md (100%) rename charts/{incubator => stable}/seedsync/icon.png (100%) rename charts/{incubator => stable}/seedsync/questions.yaml (100%) rename charts/{incubator => stable}/seedsync/templates/NOTES.txt (100%) rename charts/{incubator => stable}/seedsync/templates/common.yaml (100%) rename charts/{incubator => stable}/seedsync/values.yaml (100%) diff --git a/charts/incubator/seedsync/.helmignore b/charts/stable/seedsync/.helmignore similarity index 100% rename from charts/incubator/seedsync/.helmignore rename to charts/stable/seedsync/.helmignore diff --git a/charts/incubator/seedsync/CHANGELOG.md b/charts/stable/seedsync/CHANGELOG.md similarity index 100% rename from charts/incubator/seedsync/CHANGELOG.md rename to charts/stable/seedsync/CHANGELOG.md diff --git a/charts/incubator/seedsync/Chart.yaml b/charts/stable/seedsync/Chart.yaml similarity index 98% rename from charts/incubator/seedsync/Chart.yaml rename to charts/stable/seedsync/Chart.yaml index ccbd7e42bce..72b4187bffc 100644 --- a/charts/incubator/seedsync/Chart.yaml +++ b/charts/stable/seedsync/Chart.yaml @@ -25,4 +25,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/seedsync - https://github.com/ipsingh06/seedsync type: application -version: 3.0.0 +version: 3.0.1 diff --git a/charts/incubator/seedsync/README.md b/charts/stable/seedsync/README.md similarity index 100% rename from charts/incubator/seedsync/README.md rename to charts/stable/seedsync/README.md diff --git a/charts/incubator/seedsync/icon.png b/charts/stable/seedsync/icon.png similarity index 100% rename from charts/incubator/seedsync/icon.png rename to charts/stable/seedsync/icon.png diff --git a/charts/incubator/seedsync/questions.yaml b/charts/stable/seedsync/questions.yaml similarity index 100% rename from charts/incubator/seedsync/questions.yaml rename to charts/stable/seedsync/questions.yaml diff --git a/charts/incubator/seedsync/templates/NOTES.txt b/charts/stable/seedsync/templates/NOTES.txt similarity index 100% rename from charts/incubator/seedsync/templates/NOTES.txt rename to charts/stable/seedsync/templates/NOTES.txt diff --git a/charts/incubator/seedsync/templates/common.yaml b/charts/stable/seedsync/templates/common.yaml similarity index 100% rename from charts/incubator/seedsync/templates/common.yaml rename to charts/stable/seedsync/templates/common.yaml diff --git a/charts/incubator/seedsync/values.yaml b/charts/stable/seedsync/values.yaml similarity index 100% rename from charts/incubator/seedsync/values.yaml rename to charts/stable/seedsync/values.yaml