ci: only check flake.lock
Also remove run.fish
This commit is contained in:
parent
88a3f09de5
commit
fcdffc8bc5
2 changed files with 1 additions and 10 deletions
2
.github/workflows/update-flake-inputs.yml
vendored
2
.github/workflows/update-flake-inputs.yml
vendored
|
|
@ -74,7 +74,7 @@ jobs:
|
||||||
|
|
||||||
- name: Check for changes
|
- name: Check for changes
|
||||||
id: check
|
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
|
- name: Commit and push changes
|
||||||
if: steps.check.outputs.modified == 'true'
|
if: steps.check.outputs.modified == 'true'
|
||||||
|
|
|
||||||
9
run.fish
9
run.fish
|
|
@ -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
|
|
||||||
Loading…
Add table
Reference in a new issue