From 68760c214862ec977ff2a3cbe95402210d66fb28 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Mon, 1 Jun 2026 23:30:34 +0200 Subject: [PATCH] fix: create curation-report label before creating issue --- .github/workflows/01.1.agentic_cron.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/01.1.agentic_cron.yml b/.github/workflows/01.1.agentic_cron.yml index 4569aed6..5a9af98d 100644 --- a/.github/workflows/01.1.agentic_cron.yml +++ b/.github/workflows/01.1.agentic_cron.yml @@ -203,6 +203,7 @@ jobs: TITLE="Curation Report: $STATUS - $(date +'%Y-%m-%d')" BODY="### Nubenetes Automated Curation has finished.\n\n**Status:** $STATUS\n**Pull Request:** $PR_URL\n\nCheck the [workflow logs]($RUN_URL) for more details. If a visual report was generated, you can download it from the artifacts section of the workflow run." + gh label create "curation-report" --color "0E8A16" --description "Automated curation run reports" || true gh issue create --title "$TITLE" --body "$BODY" --label "curation-report" || echo "Failed to create issue" - name: Persist Incremental Inventory to Cache