We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afea68d commit e96bacbCopy full SHA for e96bacb
.github/workflows/update-items.yml
@@ -21,7 +21,8 @@ jobs:
21
- name: Check if item files changed
22
id: file_check
23
run: |
24
- if git diff --name-only ${{ github.event.workflow_run.head_sha }}^ ${{ github.event.workflow_run.head_sha }} | grep -q '^finders/items/data/item.txt$'; then
+ if git diff --name-only ${{ github.event.workflow_run.head_sha }}^ ${{ github.event.workflow_run.head_sha }} \
25
+ | grep -Eq '^(finders/items/data/item.txt|finders/items/data/id.txt|finders/items/items-imgs.zip)$'; then
26
echo "changed=true" >> $GITHUB_OUTPUT
27
else
28
echo "changed=false" >> $GITHUB_OUTPUT
0 commit comments