ci(lint): exclude .in files from ShellCheck lint

Exclude all `.in` files because they may contain unsupported syntax, and
they have to be preprocessed first. For example:

```sh
Error: SHELLCHECK_WARNING:
./src/rpm/systemd-update-helper.in:130:37: warning[SC1083]: This { is literal. Check expression (missing ;/\n?) or quote it.
```

Related to: https://github.com/systemd/systemd/pull/28521
This commit is contained in:
Jan Macku 2023-08-07 15:11:00 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 69674726e3
commit 97eb826821

View file

@ -30,4 +30,6 @@ jobs:
- name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@ac4483d8c6713bd2011037f44fe626989468af74
with:
# exclude all `.in` files because they may contain unsupported syntax, and they have to be preprocessed first
exclude-path: '**/*.in'
token: ${{ secrets.GITHUB_TOKEN }}