Skip to content

Commit 5824fa0

Browse files
committed
fix: Fix glob paths
1 parent f853ab8 commit 5824fa0

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -71,25 +71,25 @@ jobs:
7171
with:
7272
filters: |
7373
shared: &shared
74-
- '/*.{js,ts,json,yml,lock}'
75-
- '/.github/**'
76-
- '/jest/**'
77-
- '/rollup/**'
78-
- '/packages/core/**'
79-
- '/packages/tracing/**'
80-
- '/packages/utils/**'
81-
- '/packages/types/**'
74+
- '*.{js,ts,json,yml,lock}'
75+
- '.github/**'
76+
- 'jest/**'
77+
- 'rollup/**'
78+
- 'packages/core/**'
79+
- 'packages/tracing/**'
80+
- 'packages/utils/**'
81+
- 'packages/types/**'
8282
ember:
8383
- *shared
84-
- '/packages/ember/**'
85-
- '/packages/browser/**'
84+
- 'packages/ember/**'
85+
- 'packages/browser/**'
8686
nextjs:
8787
- *shared
88-
- '/packages/nextjs/**'
89-
- '/packages/node/**'
90-
- '/packages/react/**'
91-
- '/packages/intergrations/**'
92-
- '/packages/browser/**'
88+
- 'packages/nextjs/**'
89+
- 'packages/node/**'
90+
- 'packages/react/**'
91+
- 'packages/intergrations/**'
92+
- 'packages/browser/**'
9393
9494
outputs:
9595
commit_label: '${{ env.COMMIT_SHA }}: ${{ env.COMMIT_MESSAGE }}'

0 commit comments

Comments
 (0)