From 7c768be648ad418bec95ee61d7ba984d8afb2447 Mon Sep 17 00:00:00 2001 From: Jens Reinemann Date: Sun, 17 May 2026 18:11:23 +0200 Subject: [PATCH] fix: Repo-Name in Skripten/Skills auf krisenvorrat korrigieren - create-next-ticket.ps1, next-ticket.ps1, watch-pipeline.ps1: \ - SKILL.md (gh-tickets): Repo-Referenz + Issue-URL - workflow-planning.prompt.md, workflow-block-planning.prompt.md: Issue-URL --- .github/prompts/workflow-block-planning.prompt.md | 2 +- .github/prompts/workflow-planning.prompt.md | 2 +- .github/skills/gh-tickets/SKILL.md | 4 ++-- .github/skills/gh-tickets/create-next-ticket.ps1 | 2 +- .github/skills/gh-tickets/next-ticket.ps1 | 2 +- .github/skills/ship/watch-pipeline.ps1 | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/prompts/workflow-block-planning.prompt.md b/.github/prompts/workflow-block-planning.prompt.md index 23867e9..4398092 100644 --- a/.github/prompts/workflow-block-planning.prompt.md +++ b/.github/prompts/workflow-block-planning.prompt.md @@ -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/bollwerk/issues/" +gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/" # 2. Bestehende Order-Werte abfragen (höchsten Wert ermitteln) & ".github/skills/gh-tickets/next-ticket.ps1" | Out-Null # zeigt alle offenen Tickets mit Order diff --git a/.github/prompts/workflow-planning.prompt.md b/.github/prompts/workflow-planning.prompt.md index 49c8cc8..a798b06 100644 --- a/.github/prompts/workflow-planning.prompt.md +++ b/.github/prompts/workflow-planning.prompt.md @@ -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/bollwerk/issues/" +gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/" # 2. Bestehende Order-Werte abfragen (höchsten Wert ermitteln) & ".github/skills/gh-tickets/next-ticket.ps1" | Out-Null # zeigt alle offenen Tickets mit Order diff --git a/.github/skills/gh-tickets/SKILL.md b/.github/skills/gh-tickets/SKILL.md index 440ff70..fe56df7 100644 --- a/.github/skills/gh-tickets/SKILL.md +++ b/.github/skills/gh-tickets/SKILL.md @@ -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/bollwerk`. +Dieses Dokument definiert die verbindlichen Konventionen für GitHub-Issues im Repository `jreinemann-euris/krisenvorrat`. --- @@ -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/bollwerk/issues/" +gh project item-add 2 --owner jreinemann-euris --url "https://github.com/jreinemann-euris/krisenvorrat/issues/" # Order-Wert setzen (erfordert Item-ID und Field-ID) gh project item-edit --id --field-id --project-id --number diff --git a/.github/skills/gh-tickets/create-next-ticket.ps1 b/.github/skills/gh-tickets/create-next-ticket.ps1 index 75c48ed..477e9bf 100644 --- a/.github/skills/gh-tickets/create-next-ticket.ps1 +++ b/.github/skills/gh-tickets/create-next-ticket.ps1 @@ -24,7 +24,7 @@ param( [string]$Status = "Todo" ) -$repo = "jreinemann-euris/bollwerk" +$repo = "jreinemann-euris/krisenvorrat" $projectId = "PVT_kwHOCFqiJ84BXk9U" $orderFieldId = "PVTF_lAHOCFqiJ84BXk9UzhSw4jo" $statusFieldId = "PVTSSF_lAHOCFqiJ84BXk9UzhSw4es" diff --git a/.github/skills/gh-tickets/next-ticket.ps1 b/.github/skills/gh-tickets/next-ticket.ps1 index c68ddc6..0e01a69 100644 --- a/.github/skills/gh-tickets/next-ticket.ps1 +++ b/.github/skills/gh-tickets/next-ticket.ps1 @@ -9,7 +9,7 @@ #> param([int]$IssueNumber) -$repo = "jreinemann-euris/bollwerk" +$repo = "jreinemann-euris/krisenvorrat" if ($IssueNumber -gt 0) { # Variante A: Explizite Issue-Nummer diff --git a/.github/skills/ship/watch-pipeline.ps1 b/.github/skills/ship/watch-pipeline.ps1 index f8a4841..3d0e4d4 100644 --- a/.github/skills/ship/watch-pipeline.ps1 +++ b/.github/skills/ship/watch-pipeline.ps1 @@ -21,7 +21,7 @@ param( [string]$ExpectedSha = "" ) -$repo = "jreinemann-euris/bollwerk" +$repo = "jreinemann-euris/krisenvorrat" $poll = 10 # --- Warten ---