-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: rename
jj-docs-bot
to jj-docs[bot]
Perhaps this will stop Github from showing jj-docs-bot as a very active contributor in https://github.com/martinvonz/jj/pulse. This would probably fair, even though jj-docs-bot tries its best to be a good and helpful bot. Regardless, this seems to be the standard on Github which has `dependabot[bot]` and `github-actions[bot]`.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
poetry-version: latest | ||
- name: Install dependencies, compile and deploy docs | ||
run: | | ||
git config user.name jj-docs-bot | ||
git config user.email jj-docs-[email protected] | ||
git config user.name jj-docs[bot] | ||
git config user.email jj-docs[bot]@users.noreply.github.io | ||
.github/scripts/docs-build-deploy 'https://martinvonz.github.io/jj' prerelease main --push | ||
- name: "Show `git diff --stat`" | ||
run: git diff --stat gh-pages^ gh-pages || echo "(No diffs)" |
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 |
---|---|---|
|
@@ -123,8 +123,8 @@ jobs: | |
poetry-version: latest | ||
- name: Install dependencies, compile and deploy docs to the "latest release" section of the website | ||
run: | | ||
git config user.name jj-docs-bot | ||
git config user.email jj-docs-[email protected] | ||
git config user.name jj-docs[bot] | ||
git config user.email jj-docs[bot]@users.noreply.github.io | ||
# Using the 'latest' tag below makes the website default | ||
# to this version. | ||
.github/scripts/docs-build-deploy 'https://martinvonz.github.io/jj' "${{ github.event.release.tag_name }}" latest --update-aliases --push | ||
|