wf test
This commit is contained in:
@@ -66,6 +66,19 @@ jobs:
|
|||||||
UPDATES_FOUND=false
|
UPDATES_FOUND=false
|
||||||
UPDATED_PACKAGES=""
|
UPDATED_PACKAGES=""
|
||||||
|
|
||||||
|
# List of packages to IGNORE (known incompatible with nix-update)
|
||||||
|
# These either have complex src attributes or non-standard versioning
|
||||||
|
IGNORE_PACKAGES=(
|
||||||
|
"hyprpaper-random"
|
||||||
|
"launch-webapp"
|
||||||
|
"stt-ptt"
|
||||||
|
"tuxedo-backlight"
|
||||||
|
"zellij-ps"
|
||||||
|
"msty-studio"
|
||||||
|
"rofi-project-opener"
|
||||||
|
"pomodoro-timer"
|
||||||
|
)
|
||||||
|
|
||||||
check_commit() {
|
check_commit() {
|
||||||
[ "$1" != "$(git rev-parse HEAD)" ] && echo "true" || echo "false"
|
[ "$1" != "$(git rev-parse HEAD)" ] && echo "true" || echo "false"
|
||||||
}
|
}
|
||||||
@@ -74,6 +87,14 @@ jobs:
|
|||||||
local pkg=$1
|
local pkg=$1
|
||||||
local before_hash=$(git rev-parse HEAD)
|
local before_hash=$(git rev-parse HEAD)
|
||||||
|
|
||||||
|
# Check if package is ignored
|
||||||
|
for ignore in "${IGNORE_PACKAGES[@]}"; do
|
||||||
|
if [ "$pkg" = "$ignore" ]; then
|
||||||
|
echo "ℹ️ Skipping $pkg (in ignore list)"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# Build arguments array
|
# Build arguments array
|
||||||
local args=("--flake" "--commit")
|
local args=("--flake" "--commit")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user