-
Notifications
You must be signed in to change notification settings - Fork 54
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
1 parent
b5d69a2
commit 9bebdd8
Showing
1 changed file
with
2 additions
and
3 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 |
---|---|---|
|
@@ -29,13 +29,12 @@ jobs: | |
git fetch origin main:main | ||
git checkout -b ${{ env.working_branch }} | ||
git checkout main -- heat/core/version.py | ||
git add heat/core/version.py | ||
git commit -m "Update version.py from main branch" | ||
- name: Commit and push working branch | ||
run: | | ||
git config --global user.name 'ClaudiaComito' | ||
git config --global user.email '[email protected]@users.noreply.github.com' | ||
git add heat/core/version.py | ||
git commit -m "Update version.py" | ||
git pull origin main | ||
git push origin ${{ env.working_branch }} | ||
- name: Create a pull request | ||
uses: peter-evans/create-pull-request@v5 | ||
|