From 277ca90cd3964f2e9a254f00b40059471b430a2d Mon Sep 17 00:00:00 2001 From: Juyeong Ji Date: Thu, 13 Mar 2025 18:06:50 +0900 Subject: [PATCH] Update notebooks.yml exclude deleted file from nbfmt check --- .github/workflows/notebooks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notebooks.yml b/.github/workflows/notebooks.yml index cce8386b9..3b8d0c1be 100644 --- a/.github/workflows/notebooks.yml +++ b/.github/workflows/notebooks.yml @@ -26,7 +26,7 @@ jobs: run: | if [ "${{ github.event_name }}" == "pull_request" ]; then # Only check notebooks modified in this pull request - readarray -t changed_notebooks < <(git diff --name-only main | grep '\.ipynb$' || true) + readarray -t changed_notebooks < <(git diff --name-only main --diff-filter="d" | grep '\.ipynb$' || true) else # Manual run, check everything readarray -t changed_notebooks < <(find -name '*.ipynb')