Skip to content

Commit 3dd0c62

Browse files
authored
ci: Exclude devtools.js from triggering benchmarks (#4686)
1 parent e62871c commit 3dd0c62

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Diff for: .github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ jobs:
2323
id: filter
2424
with:
2525
# Should be kept in sync with the filter in the PR Reporter workflow
26+
predicate-quantifier: 'every'
2627
filters: |
27-
jsChanged: '**/src/**/*.js'
28+
jsChanged:
29+
- '**/src/**/*.js'
30+
- '!devtools/src/devtools.js'
2831
2932
compressed_size:
3033
name: Compressed Size

Diff for: .github/workflows/pr-reporter.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@ jobs:
2828
base: ${{ github.event.workflow_run.pull_requests[0].base.sha }}
2929
ref: ${{ github.event.workflow_run.pull_requests[0].head.sha }}
3030
# Should be kept in sync with the filter in the CI workflow
31+
predicate-quantifier: 'every'
3132
filters: |
32-
jsChanged: '**/src/**/*.js'
33+
jsChanged:
34+
- '**/src/**/*.js'
35+
- '!devtools/src/devtools.js'
3336
3437
report_running:
3538
name: Report benchmarks are in-progress

0 commit comments

Comments
 (0)