From c5d5ff98f8122f663969c49af731835616611330 Mon Sep 17 00:00:00 2001 From: m3tm3re
Date: Wed, 14 Jan 2026 20:39:40 +0100 Subject: [PATCH] fix: use escaped newlines in PR body to avoid YAML parsing error --- .gitea/workflows/nix-update.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.gitea/workflows/nix-update.yml b/.gitea/workflows/nix-update.yml index e3b64eb..b3b01c4 100644 --- a/.gitea/workflows/nix-update.yml +++ b/.gitea/workflows/nix-update.yml @@ -178,20 +178,12 @@ env: # Get commit messages for PR description COMMITS=$(git log origin/master..origin/"${BRANCH}" --pretty=format:"%h %s" | sed 's/^/- /') - PR_BODY="Automated package updates using nix-update. - -Updated packages: -${PACKAGES} - -Commits: -${COMMITS}" - # Create PR /tmp/tea pr create \ --head "${BRANCH}" \ --base master \ --title "chore: update packages with nix-update" \ - --body "${PR_BODY}" \ + --body "Automated package updates using nix-update.\n\nUpdated packages:\n${PACKAGES}\n\nCommits:\n${COMMITS}" \ --assignees m3tam3re \ --labels automated-update || echo "Failed to create PR. Please create manually."