workflows/check-format: add actionlint (#406114)

authored by Jörg Thalheim and committed by GitHub 53a79ee5 089f146d

+3 -8
+1 -1
.github/workflows/eval.yml
··· 196 # Use the target branch to get accurate maintainer info 197 nix-build target/ci -A eval.compare \ 198 --arg beforeResultDir ./targetResult \ 199 - --arg afterResultDir $(realpath prResult) \ 200 --arg touchedFilesJson ./touched-files.json \ 201 -o comparison 202
··· 196 # Use the target branch to get accurate maintainer info 197 nix-build target/ci -A eval.compare \ 198 --arg beforeResultDir ./targetResult \ 199 + --arg afterResultDir "$(realpath prResult)" \ 200 --arg touchedFilesJson ./touched-files.json \ 201 -o comparison 202
-7
.github/workflows/lint-actions.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p bash actionlint shellcheck -I nixpkgs=../.. 3 - set -euo pipefail 4 - 5 - SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" 6 - cd "$SCRIPT_DIR/../.." 7 - actionlint
···
+2
ci/default.nix
··· 44 # By default it's info, which is too noisy since we have many unmatched files 45 settings.on-unmatched = "debug"; 46 47 programs.keep-sorted.enable = true; 48 49 # This uses nixfmt-rfc-style underneath,
··· 44 # By default it's info, which is too noisy since we have many unmatched files 45 settings.on-unmatched = "debug"; 46 47 + programs.actionlint.enable = true; 48 + 49 programs.keep-sorted.enable = true; 50 51 # This uses nixfmt-rfc-style underneath,