forked from xenitV1/lemma
-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (77 loc) · 2.75 KB
/
Copy pathcreate-milestones.yml
File metadata and controls
84 lines (77 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Create V2 Milestones (einmalig)
on:
workflow_dispatch:
inputs:
confirm:
description: 'Milestones anlegen? (yes)'
required: true
default: 'yes'
jobs:
create-milestones:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create V2.1 Retrieval
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createMilestone({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'V2.1 Retrieval',
description: 'Hybrid Search (BM25 + sqlite-vec + RRF), Trust-gewichtetes Ranking, Goal-scoped Retrieval'
});
console.log('V2.1 Retrieval erstellt');
- name: Create V2.2 Verification
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createMilestone({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'V2.2 Verification',
description: 'Trust Hierarchy, Evidence Table, Stale Detection, Symbol-Hash-Check'
});
console.log('V2.2 Verification erstellt');
- name: Create V2.3 Workflow
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createMilestone({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'V2.3 Workflow',
description: 'Goal Packets, Review/Codify Loop, Entity-Extraktion'
});
console.log('V2.3 Workflow erstellt');
- name: Create V2.4 Lifecycle
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createMilestone({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'V2.4 Lifecycle',
description: 'Revision History, Insight Cards, Forgetting Model, Memory Invalidation'
});
console.log('V2.4 Lifecycle erstellt');
- name: Create V2.5 Evals
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createMilestone({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'V2.5 Evals',
description: 'Eval Harness, Recall@5, Task-Success, Staleness-Rate, Regression Suite'
});
console.log('V2.5 Evals erstellt');
- name: Zusammenfassung
run: |
echo "Alle 5 Milestones wurden erstellt:"
echo " - V2.1 Retrieval"
echo " - V2.2 Verification"
echo " - V2.3 Workflow"
echo " - V2.4 Lifecycle"
echo " - V2.5 Evals"