diff --git a/.github/workflows/weekly-uv-lock.yaml b/.github/workflows/weekly-uv-lock.yaml index ea14edcf538..fbed74a3cac 100644 --- a/.github/workflows/weekly-uv-lock.yaml +++ b/.github/workflows/weekly-uv-lock.yaml @@ -42,16 +42,12 @@ jobs: - name: Create changelog entry if: steps.changes.outputs.changed == 'true' run: | - cat > changelog_entry.yaml << 'EOF' - - bump: patch - changes: - changed: - - Updated uv.lock dependencies. - EOF - - - name: Format code - if: steps.changes.outputs.changed == 'true' - run: make format + printf '%s\n' \ + '- bump: patch' \ + ' changes:' \ + ' changed:' \ + ' - Updated uv.lock dependencies.' \ + '' > changelog_entry.yaml - name: Commit and push changes if: steps.changes.outputs.changed == 'true' diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29bb2d..348d033d6f8 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + changed: + - Updated weekly uv.lock workflow to include changelog entry.