diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-13 15:48:38 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-13 15:48:38 +1000 |
| commit | d84a52f0633d15502399a2d87d14a9e855c5d4a4 (patch) | |
| tree | 19902bb31b0fa5c4972efad27f228df1cbbae15f | |
| parent | lock/resources: async shapes (diff) | |
| download | caelestia-shell-d84a52f0633d15502399a2d87d14a9e855c5d4a4.tar.gz caelestia-shell-d84a52f0633d15502399a2d87d14a9e855c5d4a4.tar.bz2 caelestia-shell-d84a52f0633d15502399a2d87d14a9e855c5d4a4.zip | |
ci: fix diff check
| -rw-r--r-- | .github/workflows/update-flake-inputs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-flake-inputs.yml b/.github/workflows/update-flake-inputs.yml index 0bb4bb3..1a8bd07 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=$(git diff --exit-code flake.lock && echo 'false' || echo 'true') >> $GITHUB_OUTPUT + run: echo modified=$(git diff --exit-code flake.lock &>/dev/null && echo 'false' || echo 'true') >> $GITHUB_OUTPUT - name: Commit and push changes if: steps.check.outputs.modified == 'true' |