-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Brian Warner <[email protected]>
- Loading branch information
1 parent
2644a3c
commit debd171
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -60,7 +60,7 @@ jobs: | |
sphinx-build -b html docsrc docs -E -d "docsrc/_doctrees" | ||
- name: Commit and push the new documentation | ||
run: | | ||
git config user.name "Brian Warner (autocommit)" | ||
git config user.name "Brian Warner" | ||
git config user.email [email protected] | ||
git add docs | ||
git commit -s -m "Rebuild the documentation" || exit 0 | ||
|
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
- name: Commit and push the new documentation | ||
if: steps.verify_diff.outputs.changed == 'true' | ||
run: | | ||
git config user.name "Brian Warner (autocommit)" | ||
git config user.name "Brian Warner" | ||
git config user.email [email protected] | ||
git add docs | ||
git commit -m "Rebuild the documentation" || exit 0 | ||
|