ci: only check specific file

This commit is contained in:
2 * r + 2 * t
2025-08-09 12:48:19 +10:00
parent f541e99d07
commit 7027ea5442
2 changed files with 94 additions and 94 deletions
+1 -1
View File
@@ -32,7 +32,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 src/caelestia/data/emojis.txt && echo 'false' || echo 'true') >> $GITHUB_OUTPUT
- name: Commit and push changes
if: steps.check.outputs.modified == 'true'