Skip to content

Commit 7481724

Browse files
workflows/check-format: run on all files (#406680)
2 parents 46eb3e8 + 68bcd5e commit 7481724

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/eval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
tag:
167167
name: Tag
168168
runs-on: ubuntu-24.04-arm
169-
needs: [ process ]
169+
needs: [ get-merge-commit, process ]
170170
if: needs.process.outputs.targetRunId
171171
permissions:
172172
pull-requests: write

.github/workflows/get-merge-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
;;
4141
pull_request_target)
4242
if commits=$(base/ci/get-merge-commit.sh ${{ github.repository }} ${{ github.event.number }}); then
43-
echo "Checking the commits:\n$commits"
43+
echo -e "Checking the commits:\n$commits"
4444
echo "$commits" >> "$GITHUB_OUTPUT"
4545
else
4646
# Skipping so that no notifications are sent

ci/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ let
6363
fs = pkgs.lib.fileset;
6464
nixFilesSrc = fs.toSource {
6565
root = ../.;
66-
fileset = fs.difference (fs.unions [
67-
(fs.fileFilter (file: file.hasExt "nix") ../.)
68-
../.git-blame-ignore-revs
69-
]) (fs.maybeMissing ../.git);
66+
fileset = fs.difference ../. (fs.maybeMissing ../.git);
7067
};
7168
in
7269
{

0 commit comments

Comments
 (0)