revert: Repo-Name zurueck auf bollwerk (der neue korrekte Name)
Mein vorheriger Commit hat faelschlicherweise bollwerk -> krisenvorrat geaendert. Richtig ist: krisenvorrat (alt) -> bollwerk (neu).
This commit is contained in:
parent
7c768be648
commit
83ef83f4e7
6 changed files with 34 additions and 34 deletions
|
|
@ -138,7 +138,7 @@ Nach dem Anlegen **jedes** [T]- und [P]-Tickets **sofort** ausführen:
|
|||
|
||||
```powershell
|
||||
# 1. Ticket zum Board hinzufügen
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/<N>"
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/bollwerk/issues/<N>"
|
||||
|
||||
# 2. Bestehende Order-Werte abfragen (höchsten Wert ermitteln)
|
||||
& ".github/skills/gh-tickets/next-ticket.ps1" | Out-Null # zeigt alle offenen Tickets mit Order
|
||||
|
|
|
|||
2
.github/prompts/workflow-planning.prompt.md
vendored
2
.github/prompts/workflow-planning.prompt.md
vendored
|
|
@ -91,7 +91,7 @@ Nach dem Anlegen jedes [F]-Tickets **sofort** ausführen:
|
|||
|
||||
```powershell
|
||||
# 1. Ticket zum Board hinzufügen
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/<N>"
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/bollwerk/issues/<N>"
|
||||
|
||||
# 2. Bestehende Order-Werte abfragen (höchsten Wert ermitteln)
|
||||
& ".github/skills/gh-tickets/next-ticket.ps1" | Out-Null # zeigt alle offenen Tickets mit Order
|
||||
|
|
|
|||
10
.github/skills/gh-tickets/SKILL.md
vendored
10
.github/skills/gh-tickets/SKILL.md
vendored
|
|
@ -5,7 +5,7 @@ description: "Konventionen für GitHub-Issues in diesem Workspace: Aufgabentyp-L
|
|||
|
||||
# Skill: GitHub Tickets (gh-tickets)
|
||||
|
||||
Dieses Dokument definiert die verbindlichen Konventionen für GitHub-Issues im Repository `jreinemann-euris/krisenvorrat`.
|
||||
Dieses Dokument definiert die verbindlichen Konventionen für GitHub-Issues im Repository `jreinemann-euris/bollwerk`.
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ Dieses Dokument definiert die verbindlichen Konventionen für GitHub-Issues im R
|
|||
Jedes Issue MUSS genau **eines** dieser Type-Labels tragen:
|
||||
|
||||
| Label | Kürzel | Beschreibung |
|
||||
| ----------------- | ------ | -------------------------------------------------------------------- |
|
||||
| ---------------- | ------ | ------------------------------------------------------------------------------ |
|
||||
| `block-planning` | [B] | Grobplanung – zerlegt Projekt in Blocks, erstellt [T]- und [P]-Tickets |
|
||||
| `feature` | [F] | Feature-Entwicklung – Neuentwicklung ohne Referenz-Altcode |
|
||||
| `migration` | [M] | C# → Swift Migrationsschritt (Portierung von bestehendem Code) |
|
||||
|
|
@ -38,7 +38,7 @@ Stoppe und fordere den User zur Zuordnung auf. Starte den Workflow **nicht** ohn
|
|||
### Mapping zum Workflow
|
||||
|
||||
| Label | Workflow-Prompt |
|
||||
| ---------------- | -------------------------------------------------------------------- |
|
||||
| ---------------- | --------------------------------------------------- |
|
||||
| `block-planning` | `.github/prompts/workflow-block-planning.prompt.md` |
|
||||
| `feature` | `.github/prompts/workflow-implementation.prompt.md` |
|
||||
| `migration` | `.github/prompts/workflow-implementation.prompt.md` |
|
||||
|
|
@ -57,7 +57,7 @@ Die Abarbeitungsreihenfolge wird über das **Project Board** gesteuert, nicht ü
|
|||
### Board-Daten
|
||||
|
||||
| Eigenschaft | Wert |
|
||||
| ------------- | ----------------------------------------------------------------- |
|
||||
| ------------ | ---------------------------------------------------- |
|
||||
| Projekt-Name | `Bollwerk` |
|
||||
| Projekt-Nr | `2` |
|
||||
| Owner | `jreinemann-euris` |
|
||||
|
|
@ -91,7 +91,7 @@ Ausgabe: `#68 [M] CRM: Erweiterte Kundensuche (Order: 120)`
|
|||
|
||||
```powershell
|
||||
# Issue zum Board hinzufügen
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/<N>"
|
||||
gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/bollwerk/issues/<N>"
|
||||
|
||||
# Order-Wert setzen (erfordert Item-ID und Field-ID)
|
||||
gh project item-edit --id <ITEM_ID> --field-id <ORDER_FIELD_ID> --project-id <PROJECT_ID> --number <ORDER_VALUE>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ param(
|
|||
[string]$Status = "Todo"
|
||||
)
|
||||
|
||||
$repo = "jreinemann-euris/krisenvorrat"
|
||||
$repo = "jreinemann-euris/bollwerk"
|
||||
$projectId = "PVT_kwHOCFqiJ84BXk9U"
|
||||
$orderFieldId = "PVTF_lAHOCFqiJ84BXk9UzhSw4jo"
|
||||
$statusFieldId = "PVTSSF_lAHOCFqiJ84BXk9UzhSw4es"
|
||||
|
|
|
|||
2
.github/skills/gh-tickets/next-ticket.ps1
vendored
2
.github/skills/gh-tickets/next-ticket.ps1
vendored
|
|
@ -9,7 +9,7 @@
|
|||
#>
|
||||
param([int]$IssueNumber)
|
||||
|
||||
$repo = "jreinemann-euris/krisenvorrat"
|
||||
$repo = "jreinemann-euris/bollwerk"
|
||||
|
||||
if ($IssueNumber -gt 0) {
|
||||
# Variante A: Explizite Issue-Nummer
|
||||
|
|
|
|||
2
.github/skills/ship/watch-pipeline.ps1
vendored
2
.github/skills/ship/watch-pipeline.ps1
vendored
|
|
@ -21,7 +21,7 @@ param(
|
|||
[string]$ExpectedSha = ""
|
||||
)
|
||||
|
||||
$repo = "jreinemann-euris/krisenvorrat"
|
||||
$repo = "jreinemann-euris/bollwerk"
|
||||
$poll = 10
|
||||
|
||||
# --- Warten ---
|
||||
|
|
|
|||
Loading…
Reference in a new issue