Skip to content

Commit d7a8d1e

Browse files
committed
update workflow
1 parent 5cf7ae0 commit d7a8d1e

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

File renamed without changes.

.github/workflows/version.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
id: detect
2626
run: |
2727
FILES=$(git diff-tree --no-commit-id --name-only -r ${{ github.sha }} | grep '.changeset/' || true)
28+
29+
# Ignore README.md
30+
FILES=$(echo "$FILES" | grep -v 'README.md' || true)
31+
2832
if [ -z "$FILES" ]; then
2933
echo "No changeset files found"
3034
exit 0

0 commit comments

Comments
 (0)