commit
d655d0e141
2 changed files with 25 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ check data extraction tabelle im pdf
|
|||
|
||||
Check data extraction of types!
|
||||
|
||||
|
||||
... next point
|
||||
|
||||
|
||||
----------------------- OPEN
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue