Skip to content

Commit

Permalink
Merge branch 'main' into bazarr-add-mediainfo
Browse files Browse the repository at this point in the history
  • Loading branch information
npawelek authored Mar 16, 2024
2 parents 114d1db + ef729d5 commit 991a4ac
Show file tree
Hide file tree
Showing 197 changed files with 1,957 additions and 6,897 deletions.
4 changes: 0 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[Makefile]
indent_style = space
indent_size = 4

[*.{bash,sh}]
indent_style = space
indent_size = 4
3 changes: 1 addition & 2 deletions CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ representative at an online or offline event.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
devin.kray@gmail.com.
reported to the community leaders responsible for enforcement at contact@buhl.casa.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/container-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ body:
- type: markdown
attributes:
value: |
Doing you due diligence and filling out this form throughly
will gauge how serious your request is.
Doing your due diligence and filling out this form thoroughly
will help determine if your request shall be entertained.
- type: input
id: application-name
Expand Down
34 changes: 0 additions & 34 deletions .github/actions/collect-changes/action.yaml

This file was deleted.

31 changes: 5 additions & 26 deletions .github/renovate.json5
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"]
}
26 changes: 0 additions & 26 deletions .github/scripts/fetch.mjs

This file was deleted.

58 changes: 0 additions & 58 deletions .github/scripts/fetch.sh

This file was deleted.

27 changes: 27 additions & 0 deletions .github/scripts/json-to-yaml.py
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)

Loading

0 comments on commit 991a4ac

Please sign in to comment.