Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 12 additions & 1 deletion .github/workflows/specassay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Gate 2
run: bash .specify/extensions/specassay-check/scripts/check-traceability.sh
- name: Thread Report
if: github.event_name == 'pull_request'
run: python .specify/extensions/specassay-check/scripts/thread-report.py > thread-report.md || true
run: |
git show origin/${{ github.base_ref }}:trace-manifest.json > base-manifest.json || echo '{}' > base-manifest.json
git diff --name-only origin/${{ github.base_ref }}...HEAD > changed.txt
python3 .specify/extensions/specassay-check/scripts/thread-report.py \
--base base-manifest.json --head trace-manifest.json \
--changed-files changed.txt \
--config .specify/extensions/specassay-check/specassay-check-config.yml \
--pr-url ${{ github.event.pull_request.html_url }} \
--head-sha ${{ github.event.pull_request.head.sha }} \
--out thread-report.md
- name: Post Thread Report
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
Expand Down
1 change: 1 addition & 0 deletions PRD.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Insurance Java — Product Requirements

## Registry

Loading