From 8cf8f933f1b61f7ea9eed4c74d9d958e544f5243 Mon Sep 17 00:00:00 2001 From: s0up4200 Date: Tue, 8 Oct 2024 05:29:21 +0200 Subject: [PATCH] Revert "feat: improve PR title" This reverts commit 2b519f97628ba4ac2f74c189d018118f54fff28f. --- .github/workflows/update_release_notes.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update_release_notes.yml b/.github/workflows/update_release_notes.yml index c1ed69a2..387ad691 100644 --- a/.github/workflows/update_release_notes.yml +++ b/.github/workflows/update_release_notes.yml @@ -23,16 +23,14 @@ jobs: - name: Run update script id: update_script - run: | - version=$(python update_release_notes.py) - echo "::set-output name=version::${version}" + run: python update_release_notes.py - name: Commit files run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add . - git commit -m "docs: update release notes (${version})" || echo "No changes to commit" + git commit -m "Update release notes" || echo "No changes to commit" - name: Push changes run: git push origin ${{ steps.update_script.outputs.branch }} @@ -43,5 +41,5 @@ jobs: source_branch: ${{ steps.update_script.outputs.branch }} destination_branch: "main" github_token: ${{ secrets.GITHUB_TOKEN }} - pr_title: "docs: update release notes (${{ steps.update_script.outputs.version }})" + pr_title: "Update Release Notes" pr_body: "Automatically update release notes"