Skip to content

Commit 4a267df

Browse files
authored
Don't list log file as changes (jupyterlab#14700)
1 parent 8fe49b1 commit 4a267df

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/license-header.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ jobs:
3535
shell: bash -l {0}
3636
run: |
3737
set -ex
38-
export CHANGES=$(git status --porcelain | tee modified.log | wc -l)
39-
cat modified.log
40-
# Remove the log otherwise it will be committed
41-
rm modified.log
38+
export CHANGES=$(git status --porcelain | tee /tmp/modified.log | wc -l)
39+
cat /tmp/modified.log
4240
4341
echo "N_CHANGES=${CHANGES}" >> $GITHUB_OUTPUT
4442

0 commit comments

Comments
 (0)