3 Commits

Author SHA1 Message Date
a22c6b4597 checks: add AUR codespell ignore path 2025-07-07 04:26:27 +02:00
ab7666f561 ci(perf): only run push build checks if code changed 2025-07-07 04:25:43 +02:00
ee244be195 fix: oopsie path
istg if I keep making these silly mistakes...
2025-07-06 01:54:23 +02:00
5 changed files with 18 additions and 26 deletions

View File

@@ -1,2 +1,2 @@
[codespell] [codespell]
skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects,./assets/pkg/aur/*/*.tar.*

View File

@@ -12,7 +12,24 @@ jobs:
name: Check name: Check
uses: ./.github/workflows/check.yml uses: ./.github/workflows/check.yml
permissions: write-all permissions: write-all
check_paths:
name: Paths Filter
runs-on: ubuntu-latest
outputs:
code_changed: ${{ steps.filter.outputs.code }}
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v3
with:
filters: |
code:
- Makefile
- 'src/**'
- 'include/**'
build: build:
name: Build name: Build
needs: check_paths
if: github.event_name != 'push' || needs.check_paths.outputs.code_changed == 'true'
uses: ./.github/workflows/build.yml uses: ./.github/workflows/build.yml
permissions: write-all permissions: write-all

View File

@@ -1,5 +0,0 @@
BAUD_RATE=38400
TERM_NAME=linux
TTY=tty7
EXEC_PATH=/bin/lidm

View File

@@ -1,5 +0,0 @@
#!/bin/sh
[ -r conf ] && . ./conf
exec utmpset -w $TTY

View File

@@ -1,15 +0,0 @@
#!/bin/sh
[ -r conf ] && . ./conf
if [ -x /sbin/getty -o -x /bin/getty ]; then
# busybox
GETTY=getty
elif [ -x /sbin/agetty -o -x /bin/agetty ]; then
# util-linux
GETTY=agetty
fi
exec setsid ${GETTY} ${GETTY_ARGS} \
"${TTY}" "${TERM_NAME}" \
-n -l "${EXEC_PATH}" -o 7