Skip to content

Commit b5b0c57

Browse files
authored
Use correct env vars (#449)
1 parent 5a2a4d2 commit b5b0c57

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/gitsplit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '*'
88

99
env:
10-
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
10+
GITHUB_TOKEN: ${{ secrets.GITSPLIT_TOKEN }}
1111

1212
jobs:
1313
packages_split:
@@ -116,8 +116,8 @@ jobs:
116116
#repository_host: git.private.com:1234
117117

118118
# ↓ the user signed under the split commit
119-
user_name: "Florent Morselli"
120-
user_email: "florent.morselli@spomky-labs.com"
119+
user_name: ${{ secrets.GIT_AUTHOR_NAME }}
120+
user_email: ${{ secrets.GIT_AUTHOR_EMAIL }}
121121

122122
# with tag
123123
-
@@ -137,5 +137,5 @@ jobs:
137137
#repository_host: git.private.com:1234
138138

139139
# ↓ the user signed under the split commit
140-
user_name: "Florent Morselli"
141-
user_email: "florent.morselli@spomky-labs.com"
140+
user_name: ${{ secrets.GIT_AUTHOR_NAME }}
141+
user_email: ${{ secrets.GIT_AUTHOR_EMAIL }}

0 commit comments

Comments
 (0)