Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/listener.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
- name: Check Diff
run: |
echo "========== modified files =========="
git diff --name-only HEAD^ HEAD
git diff --name-only ${{ github.base_ref }}

echo "========== check paths of modified files =========="
git diff --name-only HEAD^ HEAD > files.txt
git diff --name-only ${{ github.base_ref }} > files.txt
while IFS= read -r file
do
if [[ $file != site/specs/* ]]; then
Expand Down