File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 55
55
with :
56
56
# Use app token in outpus of the 'generate_token' step
57
57
GITHUB_TOKEN : ${{ steps.generate_token.outputs.BOT_TOKEN }}
58
+ env :
58
59
# Use app name in outpus of the 'generate_token' step
59
60
GIT_COMMITTER_NAME : ${{ steps.generate_token.outputs.BOT_NAME }}
60
61
GIT_COMMITTER_EMAIL : ${{ steps.generate_token.outputs.BOT_NAME }}@users.noreply.github.com
77
78
with :
78
79
# Use app token in the environment variable named "BOT_TOKEN"
79
80
GITHUB_TOKEN : ${{ env.BOT_TOKEN }}
81
+ env :
80
82
# Use app name in the environment variable named "BOT_NAME"
81
83
GIT_COMMITTER_NAME : ${{ env.BOT_NAME }}
82
84
GIT_COMMITTER_EMAIL : ${{ env.BOT_NAME }}@users.noreply.github.com
@@ -102,6 +104,7 @@ jobs:
102
104
- uses : ' any other action'
103
105
with :
104
106
GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
107
+ env :
105
108
GIT_COMMITTER_NAME : ${{ secrets.BOT_NAME }}
106
109
GIT_COMMITTER_EMAIL : ${{ secrets.BOT_NAME }}@users.noreply.github.com
107
110
` ` `
You can’t perform that action at this time.
0 commit comments