Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtysn committed Aug 22, 2024
1 parent 8f8039d commit 9cbd174
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/generate-gif-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Check for changes in src folder
id: check_changes
run: |
if git diff --quiet HEAD^ HEAD -- src/; then
if git diff --quiet HEAD -- src/; then
echo "CHANGED=false" >> $GITHUB_ENV
else
echo "CHANGED=true" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-gif.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Check for changes in src folder
id: check_changes
run: |
if git diff --quiet HEAD^ HEAD -- src/; then
if git diff --quiet HEAD -- src/; then
echo "CHANGED=false" >> $GITHUB_ENV
else
echo "CHANGED=true" >> $GITHUB_ENV
Expand Down

0 comments on commit 9cbd174

Please sign in to comment.