Skip to content

Commit

Permalink
[patch] moving git username and email into tagger config
Browse files Browse the repository at this point in the history
  • Loading branch information
robertfmurdock committed Sep 12, 2024
1 parent 918a1ba commit c0bae2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:
with:
fetch-depth: 0
token: '${{ secrets.GITHUB_TOKEN }}'
- name: Set Up Git User
run: |
git config user.name "github-actions[bot]"
git config user.email "[email protected]"
- name: Set up JDK
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ plugins {
tagger {
releaseBranch = "main"
githubReleaseEnabled.set(true)
userName = "github-actions[bot]"
userEmail = "[email protected]"
}

tasks {
Expand Down

0 comments on commit c0bae2c

Please sign in to comment.