Skip to content

Commit

Permalink
ci: add bot identities (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru authored Dec 20, 2022
1 parent a7051c1 commit 91b8b45
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
with:
jvm: temurin:1.11.0.17

- run: sbt ghpagesPushSite
- name: sbt ghpages
run: |-
git config --global user.name "sbt-site bot"
git config --global user.email "[email protected]"
sbt ghpagesPushSite
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ licenses += ("BSD 3-Clause", url("https://opensource.org/licenses/BSD-3-Clause")
scmInfo := Some(ScmInfo(url("https://github.com/sbt/sbt-site"), "scm:git:[email protected]:sbt/sbt-site.git"))
//#scm-info

developers += Developer(
"contributors",
"Contributors",
"https://gitter.im/sbt/sbt-site",
url("https://github.com/sbt/sbt-site/graphs/contributors")
)

scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
Expand Down

0 comments on commit 91b8b45

Please sign in to comment.