From fcdffc8bc583ba28c2d06d3c9c95d6e94130ce02 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 9 Aug 2025 12:45:27 +1000 Subject: ci: only check flake.lock Also remove run.fish --- .github/workflows/update-flake-inputs.yml | 2 +- run.fish | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100755 run.fish diff --git a/.github/workflows/update-flake-inputs.yml b/.github/workflows/update-flake-inputs.yml index e5d0d42..0bb4bb3 100644 --- a/.github/workflows/update-flake-inputs.yml +++ b/.github/workflows/update-flake-inputs.yml @@ -74,7 +74,7 @@ jobs: - name: Check for changes id: check - run: echo modified=$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') >> $GITHUB_OUTPUT + run: echo modified=$(git diff --exit-code flake.lock && echo 'false' || echo 'true') >> $GITHUB_OUTPUT - name: Commit and push changes if: steps.check.outputs.modified == 'true' diff --git a/run.fish b/run.fish deleted file mode 100755 index ada4152..0000000 --- a/run.fish +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env fish - -set -l dbus 'quickshell.dbus.properties.warning = false;quickshell.dbus.dbusmenu.warning = false' # System tray dbus property errors -set -l notifs 'quickshell.service.notifications.warning = false' # Notification server warnings on reload -set -l sni 'quickshell.service.sni.host.warning = false' # StatusNotifierItem warnings on reload -set -l process 'QProcess: Destroyed while process' # Long running processes on reload -set -l cache "Cannot open: file://$XDG_CACHE_HOME/caelestia/imagecache/" - -qs -p (dirname (status filename)) --log-rules "$dbus;$notifs;$sni" | grep -vF -e $process -e $cache -- cgit v1.2.3-freya