-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bazarr-add-mediainfo
- Loading branch information
Showing
197 changed files
with
1,957 additions
and
6,897 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 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 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,35 +1,14 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
"config:recommended", | ||
"docker:enableMajor", | ||
":disableRateLimiting", | ||
":dependencyDashboard", | ||
":semanticCommits", | ||
":automergeDigest" | ||
":disableRateLimiting", | ||
":semanticCommits" | ||
], | ||
"platform": "github", | ||
"username": "rosey-bot[bot]", | ||
"repositories": ["onedr0p/containers"], | ||
"onboarding": false, | ||
"requireConfig": "optional", | ||
"gitAuthor": "rosey-bot <98030736+rosey-bot[bot]@users.noreply.github.com>", | ||
"dependencyDashboardTitle": "Renovate Dashboard 🤖", | ||
"suppressNotifications": ["prIgnoreNotification"], | ||
"commitBodyTable": true, | ||
"packageRules": [ | ||
{ | ||
"description": "Auto-merge Github Actions", | ||
"matchDatasources": ["github-tags"], | ||
"automerge": true, | ||
"automergeType": "branch", | ||
"ignoreTests": true, | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"matchPackagePatterns": ["renovatebot/github-action"] | ||
}, | ||
{ | ||
"matchDatasources": ["docker"], | ||
"matchUpdateTypes": ["digest"], | ||
"commitMessagePrefix": "📣 " | ||
} | ||
] | ||
"suppressNotifications": ["prEditedNotification", "prIgnoreNotification"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
import os | ||
import json | ||
import yaml | ||
|
||
def json_to_yaml(subdir, file): | ||
obj = None | ||
|
||
json_file = os.path.join(subdir, file) | ||
with open(json_file) as f: | ||
obj = json.load(f) | ||
|
||
yaml_file = os.path.join(subdir, "metadata.yaml") | ||
with open(yaml_file, "w") as f: | ||
yaml.dump(obj, f) | ||
|
||
os.remove(json_file) | ||
|
||
|
||
if __name__ == "__main__": | ||
|
||
for subdir, dirs, files in os.walk("./apps"): | ||
for f in files: | ||
if f != "metadata.json": | ||
continue | ||
json_to_yaml(subdir, f) | ||
|
Oops, something went wrong.