-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,14 +47,6 @@ jobs: | |
# Replace the original CHANGELOG.md with the updated one | ||
mv new_changelog.md CHANGELOG.md | ||
- name: Commit changes to a new branch | ||
run: | | ||
# Create a new branch with a unique name | ||
git checkout -b update-changelog-${{ github.event.release.tag_name }} | ||
git add CHANGELOG.md # Add the updated CHANGELOG.md file to git | ||
git commit -m "Update CHANGELOG.md for release ${{ github.event.release.tag_name }}" # Commit the changes | ||
git push origin update-changelog-${{ github.event.release.tag_name }} # Push the changes to the new branch | ||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
with: | ||
|