Fix actionlint issues

This commit is contained in:
Kevin Stillhammer 2025-03-18 19:47:41 +01:00
parent 5b36bd7cc1
commit fd492e52e3
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

9
.github/actionlint.yaml vendored Normal file
View file

@ -0,0 +1,9 @@
self-hosted-runner:
# Custom labels of self-hosted or large GitHub hosted runners
# so that actionlint knows that they are not a typo
labels:
- selfhosted-ubuntu-arm64
# Configuration variables in array of strings defined in your repository or
# organization. `null` means disabling configuration variables check.
# Empty array means no configuration variable is allowed.
config-variables: null

View file

@ -493,4 +493,5 @@ jobs:
- name: All tests passed
run: |
echo "All jobs passed: ${{ !contains(needs.*.result, 'failure') }}"
# shellcheck disable=SC2242
exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}