Skip to content
Open
Changes from 1 commit
Commits
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
19 changes: 17 additions & 2 deletions .github/workflows/linear-release-creators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,30 @@ on:
push:
branches: [trunk]
paths:
# Reader
# Reader - UI, state, data, utilities
- 'client/reader/**'
- 'client/blocks/reader-*/**'
# Newsletter
- 'client/blocks/conversation-*/**'
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

client/blocks/conversation-*/** does not match the existing client/blocks/conversations/** directory (plural). As a result, changes to the Conversations block won’t trigger this workflow. Add an explicit client/blocks/conversations/** path (or widen the glob) to cover that directory too.

Suggested change
- 'client/blocks/conversation-*/**'
- 'client/blocks/conversation-*/**'
- 'client/blocks/conversations/**'

Copilot uses AI. Check for mistakes.
- 'client/blocks/follow-button/**'
- 'client/data/reader/**'
- 'client/state/reader/**'
- 'client/state/reader-ui/**'
- 'client/lib/reader/**'
- 'packages/data-stores/src/reader/**'
# Newsletter - settings, onboarding, import
- 'client/data/newsletter-categories/**'
- 'client/data/paid-newsletter/**'
- 'client/mailing-lists/**'
- 'client/my-sites/email/**'
- 'client/my-sites/subscribers/**'
- 'client/my-sites/site-settings/settings-newsletter/**'
- 'client/my-sites/importer/newsletter/**'
- 'client/landing/stepper/declarative-flow/flows/newsletter/**'
# Subscriptions
- 'client/landing/subscriptions/**'
- 'packages/subscriber/**'
- 'packages/data-stores/src/subscriber/**'
- 'packages/data-stores/src/newsletter-categories/**'
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

packages/data-stores/src/newsletter-categories/** is listed under the # Subscriptions section, but the path name suggests it’s Newsletter-related. Consider moving it under the Newsletter section or updating the section comment so future maintainers don’t misinterpret the ownership/scope.

Suggested change
# Subscriptions
- 'client/landing/subscriptions/**'
- 'packages/subscriber/**'
- 'packages/data-stores/src/subscriber/**'
- 'packages/data-stores/src/newsletter-categories/**'
- 'packages/data-stores/src/newsletter-categories/**'
# Subscriptions
- 'client/landing/subscriptions/**'
- 'packages/subscriber/**'
- 'packages/data-stores/src/subscriber/**'

Copilot uses AI. Check for mistakes.

permissions:
contents: read
Expand Down
Loading