mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
fix: auto-fix linting issues
This commit is contained in:
committed by
github-actions[bot]
parent
b8ad99cc82
commit
769d9bf0a6
@@ -19,30 +19,30 @@ if [[ "$update" = "yes" ]]; then
|
|||||||
# --- helper: list open PRs via GitHub API (unauthenticated) ----------------
|
# --- helper: list open PRs via GitHub API (unauthenticated) ----------------
|
||||||
list_open_prs() {
|
list_open_prs() {
|
||||||
# prints PR numbers, one per line; returns non-zero if none or curl missing
|
# prints PR numbers, one per line; returns non-zero if none or curl missing
|
||||||
command -v curl >/dev/null 2>&1 || return 1
|
command -v curl > /dev/null 2>&1 || return 1
|
||||||
local page=1 per_page=100 out
|
local page=1 per_page=100 out
|
||||||
local -a all=() chunk=()
|
local -a all=() chunk=()
|
||||||
while :; do
|
while :; do
|
||||||
out="$(curl -fsSL "https://api.github.com/repos/${owner}/${reponame}/pulls?state=open&per_page=${per_page}&page=${page}")" || break
|
out="$(curl -fsSL "https://api.github.com/repos/${owner}/${reponame}/pulls?state=open&per_page=${per_page}&page=${page}")" || break
|
||||||
[[ -z "$out" || "$out" == "[]" ]] && break
|
[[ -z "$out" || "$out" == "[]" ]] && break
|
||||||
if command -v jq >/dev/null 2>&1; then
|
if command -v jq > /dev/null 2>&1; then
|
||||||
mapfile -t chunk < <(printf '%s' "$out" | jq -r '.[] | select(.draft == false) | .number')
|
mapfile -t chunk < <(printf '%s' "$out" | jq -r '.[] | select(.draft == false) | .number')
|
||||||
else
|
else
|
||||||
# Fallback JSON scraping if jq is unavailable
|
# Fallback JSON scraping if jq is unavailable
|
||||||
mapfile -t chunk < <(printf '%s' "$out" | grep -o '"number":[[:space:]]*[0-9]\+' | grep -o '[0-9]\+')
|
mapfile -t chunk < <(printf '%s' "$out" | grep -o '"number":[[:space:]]*[0-9]\+' | grep -o '[0-9]\+')
|
||||||
fi
|
fi
|
||||||
((${#chunk[@]}==0)) && break
|
((${#chunk[@]} == 0)) && break
|
||||||
all+=("${chunk[@]}")
|
all+=("${chunk[@]}")
|
||||||
((${#chunk[@]} < per_page)) && break
|
((${#chunk[@]} < per_page)) && break
|
||||||
((page++))
|
((page++))
|
||||||
done
|
done
|
||||||
((${#all[@]}==0)) && return 1
|
((${#all[@]} == 0)) && return 1
|
||||||
printf '%s\n' "${all[@]}"
|
printf '%s\n' "${all[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# --- clone base ------------------------------------------------------------
|
# --- clone base ------------------------------------------------------------
|
||||||
git clone --quiet --branch "$branch" "$repo" "$temp_dir"
|
git clone --quiet --branch "$branch" "$repo" "$temp_dir"
|
||||||
pushd "$temp_dir" >/dev/null
|
pushd "$temp_dir" > /dev/null
|
||||||
git fetch --quiet origin
|
git fetch --quiet origin
|
||||||
git config user.name "Local PR Aggregator"
|
git config user.name "Local PR Aggregator"
|
||||||
git config user.email "local@example.invalid"
|
git config user.email "local@example.invalid"
|
||||||
@@ -52,7 +52,8 @@ if [[ "$update" = "yes" ]]; then
|
|||||||
mapfile -t prs < <(list_open_prs || true)
|
mapfile -t prs < <(list_open_prs || true)
|
||||||
if ((${#prs[@]})); then
|
if ((${#prs[@]})); then
|
||||||
# Sort numerically (oldest first)
|
# Sort numerically (oldest first)
|
||||||
IFS=$'\n' prs=($(sort -n <<<"${prs[*]}")); unset IFS
|
IFS=$'\n' prs=($(sort -n <<< "${prs[*]}"))
|
||||||
|
unset IFS
|
||||||
echo "Open PR(s): ${prs[*]}"
|
echo "Open PR(s): ${prs[*]}"
|
||||||
|
|
||||||
for pr in "${prs[@]}"; do
|
for pr in "${prs[@]}"; do
|
||||||
@@ -75,7 +76,7 @@ if [[ "$update" = "yes" ]]; then
|
|||||||
echo "No open PRs detected (API unavailable or none open)."
|
echo "No open PRs detected (API unavailable or none open)."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
popd >/dev/null
|
popd > /dev/null
|
||||||
rm -rf "$target_dir"
|
rm -rf "$target_dir"
|
||||||
mv "$temp_dir" "$target_dir"
|
mv "$temp_dir" "$target_dir"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -94,13 +94,13 @@
|
|||||||
"panel_admin": false,
|
"panel_admin": false,
|
||||||
"panel_icon": "mdi:book-multiple",
|
"panel_icon": "mdi:book-multiple",
|
||||||
"ports": {
|
"ports": {
|
||||||
"8181/tcp": 8181,
|
|
||||||
"8081/tcp": 8081,
|
"8081/tcp": 8081,
|
||||||
|
"8181/tcp": 8181,
|
||||||
"9090/tcp": 9090
|
"9090/tcp": 9090
|
||||||
},
|
},
|
||||||
"ports_description": {
|
"ports_description": {
|
||||||
"8181/tcp": "Calibre desktop gui (https)",
|
|
||||||
"8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui",
|
"8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui",
|
||||||
|
"8181/tcp": "Calibre desktop gui (https)",
|
||||||
"9090/tcp": "Calibre wireless connection, to be enabled within the desktop gui"
|
"9090/tcp": "Calibre wireless connection, to be enabled within the desktop gui"
|
||||||
},
|
},
|
||||||
"privileged": [
|
"privileged": [
|
||||||
|
|||||||
0
emby_beta/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
emby_beta/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
nzbget/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
nzbget/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
portainer/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
portainer/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
portainer/rootfs/etc/services.d/portainer/run
Normal file → Executable file
0
portainer/rootfs/etc/services.d/portainer/run
Normal file → Executable file
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
set -e
|
set -e
|
||||||
|
|||||||
0
qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run
Normal file → Executable file
0
qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run
Normal file → Executable file
0
qbittorrent/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
qbittorrent/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
qbittorrent/rootfs/etc/services.d/timer/run
Normal file → Executable file
0
qbittorrent/rootfs/etc/services.d/timer/run
Normal file → Executable file
0
ubooquity/rootfs/etc/services.d/nginx/run
Normal file → Executable file
0
ubooquity/rootfs/etc/services.d/nginx/run
Normal file → Executable file
Reference in New Issue
Block a user