-
Notifications
You must be signed in to change notification settings - Fork 0
Finalize staging cleanup and safety hardening #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
haydenkoch
wants to merge
11
commits into
staging
Choose a base branch
from
codex/staging-cleanup
base: staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ac04cd8
feat: harden runtime config and delivery flows
haydenkoch adf9e97
chore(release): harden staging delivery workflow
haydenkoch 68c3307
ci(checks): stabilize ephemeral test bootstrap
haydenkoch 9e3e4cd
ci(e2e): provide asset base url in browser tests
haydenkoch 3f587bb
style: format source ops seed fixture lookup
haydenkoch a16c268
ci: rely on packageManager pnpm version in actions
haydenkoch fe0e6bc
ci: only require migrations for schema changes
haydenkoch 9f913df
style: format migration CI guard
haydenkoch 207460a
ci: bootstrap ephemeral databases in test jobs
haydenkoch c1d6169
test: seed paginated funding fixtures for HTTP smoke coverage
haydenkoch d9e26cb
fix: clear staging merge blockers
haydenkoch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @haydenkoch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: npm | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 10 | ||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| ## Summary | ||
|
|
||
| - | ||
|
|
||
| ## Linear Issue | ||
|
|
||
| - Closes: | ||
|
|
||
| ## Risk Level | ||
|
|
||
| - [ ] Low | ||
| - [ ] Medium | ||
| - [ ] High | ||
|
|
||
| ## Migration Impact | ||
|
|
||
| - [ ] No schema or data migration | ||
| - [ ] Requires committed migration files | ||
|
|
||
| ## Rollback Plan | ||
|
|
||
| - | ||
|
|
||
| ## Testing | ||
|
|
||
| - [ ] `pnpm lint` | ||
| - [ ] `pnpm check` | ||
| - [ ] Other: | ||
|
|
||
| ## Staging Verification | ||
|
|
||
| - [ ] Not required | ||
| - [ ] `GET /api/health` verified | ||
| - [ ] Auth smoke-tested | ||
| - [ ] Search smoke-tested | ||
| - [ ] Uploads/assets smoke-tested | ||
| - [ ] Admin/source-ops smoke-tested |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| name: PR Title | ||
|
|
||
| on: | ||
| pull_request_target: | ||
| types: | ||
| - opened | ||
| - edited | ||
| - reopened | ||
| - synchronize | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| validate-pr-title: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Validate Conventional Commit PR title | ||
| env: | ||
| PR_TITLE: ${{ github.event.pull_request.title }} | ||
| run: | | ||
| node <<'EOF' | ||
| const title = process.env.PR_TITLE ?? ''; | ||
| const pattern = | ||
| /^(build|chore|ci|docs|feat|fix|perf|refactor|release|revert|security|style|test)(\([^)]+\))?!?: .+/; | ||
|
|
||
| if (!pattern.test(title)) { | ||
| console.error(`Invalid PR title: "${title}"`); | ||
| console.error( | ||
| 'Use Conventional Commit style, for example: fix(search): handle empty queries' | ||
| ); | ||
| process.exit(1); | ||
| } | ||
| EOF | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,3 +10,7 @@ bun.lockb | |
| /drizzle/ | ||
| /.claude/ | ||
| /test-results/ | ||
| /AGENTS.md | ||
| /CLAUDE.md | ||
| /docs/plans/** | ||
| /docs/reviews/** | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.