-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Update Changelog script to clone libs in tmp dir to get history.
Before it depended on the dependencies being already cloned in the parent directory.
- Loading branch information
1 parent
5e258f4
commit 4465cee
Showing
2 changed files
with
30 additions
and
13 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
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 |
---|---|---|
|
@@ -27,11 +27,11 @@ jobs: | |
run: | | ||
git checkout master | ||
python3 .github/tools/gitchanges.py --input Changelog.md | ||
- name: Commit the new Changelog | ||
run: | | ||
git config --global user.name 'Github Actions' | ||
git config --global user.email '[email protected]' | ||
git add --force Changelog.md | ||
git commit -m "Updated the Changelog" | ||
git commit -m "Updated the Changelog (${{ github.ref_name || 'unknown ref'}})" | ||
git push |