From c087166c3863ff3a2e3be22f701dfd6b6f16e0d5 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Wed, 18 Sep 2024 08:14:03 +0200 Subject: [PATCH] github: Update rosdistro update workflow --- .github/workflows/update.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d743293..b6ca84b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -14,11 +14,13 @@ jobs: git config user.name 'github-actions[bot]' git config user.email 'github-actions[bot]@users.noreply.github.com' - name: Update rosdistro - run: nix flake update rosdistro --commit-lock-file + run: | + nix flake update rosdistro --commit-lock-file + git show --format='%b' --no-patch > .body - name: Create Pull Request uses: peter-evans/create-pull-request@v7 with: branch: rosdistro-updates - base: main delete-branch: true title: 'Rosdistro update' + body-path: .body