Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ on:

env:
BASE_REF: ${{ github.event.pull_request.base.ref }}
# Turbo's own GitHub Actions event auto-detection for `--affected` doesn't
# reliably resolve the base ref in this repo (falls back to treating every
# package as affected, silently running Format/Lint/etc. against the whole
# monorepo instead of just what the PR touched). Giving it a concrete SHA
# sidesteps the ambiguity entirely -- verified locally that `--affected`
# correctly narrows to just the changed packages (+ their dependents) once
# this is set, versus all 9 packages without it.
TURBO_SCM_BASE: ${{ github.event.pull_request.base.sha }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions apps/storybook/.storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ const preview: Preview = {
'File Upload',
'Input',
'Input Group',
'Lockable Value Field',
'Label',
'Multi Select',
'Radio Group',
Expand Down
1 change: 1 addition & 0 deletions packages/apollo-core/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"root": false,
"$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
"vcs": {
"enabled": true,
Expand Down
1 change: 1 addition & 0 deletions packages/apollo-react/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"root": false,
"$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
"vcs": {
"enabled": true,
Expand Down
Loading
Loading