diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-09 12:48:19 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-09 12:48:19 +1000 |
| commit | 7027ea54426be0cb57bd595573831b55a1095861 (patch) | |
| tree | d48ff66099cac5782d962e443af735e11ed0cdeb /.github/workflows/update-emojis.yml | |
| parent | pip: add monitor offset (diff) | |
| download | caelestia-cli-7027ea54426be0cb57bd595573831b55a1095861.tar.gz caelestia-cli-7027ea54426be0cb57bd595573831b55a1095861.tar.bz2 caelestia-cli-7027ea54426be0cb57bd595573831b55a1095861.zip | |
ci: only check specific file
Diffstat (limited to '.github/workflows/update-emojis.yml')
| -rw-r--r-- | .github/workflows/update-emojis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-emojis.yml b/.github/workflows/update-emojis.yml index c4b9ace..c6efc6d 100644 --- a/.github/workflows/update-emojis.yml +++ b/.github/workflows/update-emojis.yml @@ -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' |