File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ jobs:
149
149
env :
150
150
XCODE_VERSION : " 15.0.1"
151
151
steps :
152
- - name : Connect iOS Bot
152
+ - name : Connect Bot
153
153
uses : webfactory/ssh-agent@v0.7.0
154
154
with :
155
155
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 12
12
runs-on : macos-14
13
13
if : github.event_name == 'workflow_dispatch' || (github.event.issue.pull_request && github.event.issue.state == 'open' && github.event.comment.body == '/merge release')
14
14
steps :
15
- - name : Connect iOS Bot
15
+ - name : Connect Bot
16
16
uses : webfactory/ssh-agent@v0.7.0
17
17
with :
18
18
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 13
13
runs-on : macos-13
14
14
if : github.event.pull_request.merged == true # only merged pull requests must trigger this job
15
15
steps :
16
- - name : Connect iOS Bot
16
+ - name : Connect Bot
17
17
uses : webfactory/ssh-agent@v0.7.0
18
18
with :
19
19
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 13
13
name : Start new release
14
14
runs-on : macos-14
15
15
steps :
16
- - name : Connect iOS Bot
16
+ - name : Connect Bot
17
17
uses : webfactory/ssh-agent@v0.7.0
18
18
with :
19
19
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 19
19
env :
20
20
GITHUB_TOKEN : ' ${{ secrets.CI_BOT_GITHUB_TOKEN }}'
21
21
steps :
22
- - name : Connect iOS Bot
22
+ - name : Connect Bot
23
23
uses : webfactory/ssh-agent@v0.7.0
24
24
with :
25
25
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 72
72
env :
73
73
XCODE_VERSION : " 15.0.1"
74
74
steps :
75
- - name : Connect iOS Bot
75
+ - name : Connect Bot
76
76
uses : webfactory/ssh-agent@v0.7.0
77
77
with :
78
78
ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 629
629
630
630
private_lane :create_pr_comment do |options |
631
631
if is_ci && !options [ :pr_num ] . to_s . empty?
632
- last_comment = sh ( "gh pr view #{ options [ :pr_num ] } --json comments --jq '.comments | map(select(.author.login == \" Stream-iOS -Bot\" )) | last'" )
632
+ last_comment = sh ( "gh pr view #{ options [ :pr_num ] } --json comments --jq '.comments | map(select(.author.login == \" Stream-SDK -Bot\" )) | last'" )
633
633
edit_last_comment = options [ :edit_last_comment_with_text ] && last_comment . include? ( options [ :edit_last_comment_with_text ] ) ? '--edit-last' : ''
634
634
sh ( "gh pr comment #{ options [ :pr_num ] } #{ edit_last_comment } -b '#{ options [ :text ] } '" )
635
635
end
You can’t perform that action at this time.
0 commit comments