Skip to content

Commit

Permalink
Revert "feat: improve PR title"
Browse files Browse the repository at this point in the history
This reverts commit 2b519f9.
  • Loading branch information
s0up4200 committed Oct 8, 2024
1 parent 2b519f9 commit 8cf8f93
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/update_release_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
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 }}
Expand All @@ -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"

0 comments on commit 8cf8f93

Please sign in to comment.