From bb7c9c021f51ce8e1583a84a7427241e2cc450ef Mon Sep 17 00:00:00 2001 From: ValueOn AG Date: Thu, 15 May 2025 07:50:20 +0200 Subject: [PATCH 1/3] rerun --- notes/readme.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/notes/readme.md b/notes/readme.md index 677e78ed..5a6eb839 100644 --- a/notes/readme.md +++ b/notes/readme.md @@ -92,6 +92,30 @@ git remote set-url origin https://valueon@github.com/valueonag/gateway git remote set-url origin https://valueon@github.com/valueonag/frontend_agents git remote set-url origin https://valueon@github.com/valueonag/wiki +### git delete workflow runs (cleanup) + +gh auth login + +Navigate to your repository folder (if not already there): +bash: cd /path/to/your/repository + +List workflow runs: +bash: gh run list + +Delete a specific workflow run: +bash: gh run delete [RUN_ID] + +Delete all completed workflow runs (to clear up space): +bash: gh run list --status completed --json databaseId -q '.[].databaseId' | xargs -I{} gh run delete {} +powershell: + +$runs = gh run list --status completed --json databaseId -q ".[].databaseId" | ConvertFrom-Json +foreach ($run in $runs) { + Write-Host "Deleting run $run" + echo "y" | gh run delete $run +} + + ## Lizenz PRIVATE LICENSE PATRICK MOTSCH ValueOn AG From ec7737419b8535b1ef591c619a99ab453727fdfa Mon Sep 17 00:00:00 2001 From: ValueOn AG Date: Thu, 15 May 2025 08:31:20 +0200 Subject: [PATCH 2/3] rerun2 --- notes/changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/changelog.txt b/notes/changelog.txt index 1954e554..6b616efe 100644 --- a/notes/changelog.txt +++ b/notes/changelog.txt @@ -9,7 +9,7 @@ check data extraction tabelle im pdf Check data extraction of types! - +... ----------------------- OPEN From 3da6cca8d493288ca6a5e28a426fea909ce91fd8 Mon Sep 17 00:00:00 2001 From: ValueOn AG Date: Thu, 15 May 2025 08:33:37 +0200 Subject: [PATCH 3/3] rerun3 --- notes/changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/changelog.txt b/notes/changelog.txt index 6b616efe..641ccdb7 100644 --- a/notes/changelog.txt +++ b/notes/changelog.txt @@ -9,7 +9,7 @@ check data extraction tabelle im pdf Check data extraction of types! -... +... next point ----------------------- OPEN