-
Notifications
You must be signed in to change notification settings - Fork 12
CS-10671: Rename Ticket β Issue, trim unused fields, add Phase 2 deps #4361
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
Merged
habdelra
merged 5 commits into
main
from
cs-10671-refactor-darkfactorygts-rename-ticket-issue-trim-unused
Apr 9, 2026
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
cfe5ca1
CS-10671: Rename Ticket β Issue, trim unused fields, add Phase 2 depeβ¦
habdelra 97a125e
Remove assignedAgent field from Issue and delete pick-ticket.ts
habdelra 9636921
Fix issueStatus β status in test and docs (PR review feedback)
habdelra 3232e0f
Merge main into cs-10671 branch, resolve conflicts
habdelra 05430df
Remove accidentally staged .claude/worktrees directories
habdelra 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| name: CI Software Factory | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - ci-bisect | ||
| - ci-bisect-** | ||
| pull_request: | ||
| paths: | ||
| - ".github/workflows/ci-software-factory.yaml" | ||
| - "packages/runtime-common/**" | ||
| - "packages/base/**" | ||
| - "packages/boxel-icons/**" | ||
| - "packages/host/**" | ||
| - "packages/matrix/**" | ||
| - "packages/postgres/**" | ||
| - "packages/realm-server/**" | ||
| - "packages/software-factory/**" | ||
| - "package.json" | ||
| - "pnpm-lock.yaml" | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: ci-software-factory-${{ github.head_ref || github.run_id }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| checks: write | ||
| contents: read | ||
| id-token: write | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| test-web-assets: | ||
| name: Build test web assets | ||
| uses: ./.github/workflows/test-web-assets.yaml | ||
|
|
||
| software-factory-test: | ||
| name: Software Factory Tests | ||
| needs: test-web-assets | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - uses: ./.github/actions/init | ||
| - name: Download test web assets | ||
| uses: actions/download-artifact@b14cf4c92620c250e1c074ab0a5800e37df86765 # 4.2.0 | ||
| with: | ||
| name: ${{ needs.test-web-assets.outputs.artifact_name }} | ||
| path: .test-web-assets-artifact | ||
| - name: Restore test web assets into workspace | ||
| shell: bash | ||
| run: | | ||
| shopt -s dotglob | ||
| cp -a .test-web-assets-artifact/. ./ | ||
| - name: Install Playwright Browsers | ||
| run: pnpm exec playwright install | ||
| working-directory: packages/software-factory | ||
| - name: Run Node tests | ||
| run: pnpm test:node | ||
| working-directory: packages/software-factory | ||
| - name: Serve test assets (icons + host dist) | ||
| uses: JarvusInnovations/background-action@2428e7b970a846423095c79d43f759abf979a635 # 1.0.7 | ||
| with: | ||
| run: mise run ci:serve-test-assets & | ||
| wait-for: 3m | ||
| wait-on: | | ||
| http-get://localhost:4200 | ||
| http-get://localhost:4206 | ||
| - name: Run Playwright tests | ||
| run: pnpm test:playwright | ||
| working-directory: packages/software-factory | ||
| - name: Upload Playwright traces | ||
| if: ${{ !cancelled() }} | ||
| uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # 4.6.1 | ||
| with: | ||
| name: software-factory-playwright-traces | ||
| path: packages/software-factory/test-results/**/trace.zip | ||
| retention-days: 30 | ||
| if-no-files-found: ignore |
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
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
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.