Skip to content

Commit f707302

Browse files
committed
[CI] Rename bot on CI
1 parent 5a8ca7a commit f707302

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/cron-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
env:
150150
XCODE_VERSION: "15.0.1"
151151
steps:
152-
- name: Connect iOS Bot
152+
- name: Connect Bot
153153
uses: webfactory/ssh-agent@v0.7.0
154154
with:
155155
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

.github/workflows/release-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: macos-14
1313
if: github.event_name == 'workflow_dispatch' || (github.event.issue.pull_request && github.event.issue.state == 'open' && github.event.comment.body == '/merge release')
1414
steps:
15-
- name: Connect iOS Bot
15+
- name: Connect Bot
1616
uses: webfactory/ssh-agent@v0.7.0
1717
with:
1818
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

.github/workflows/release-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: macos-13
1414
if: github.event.pull_request.merged == true # only merged pull requests must trigger this job
1515
steps:
16-
- name: Connect iOS Bot
16+
- name: Connect Bot
1717
uses: webfactory/ssh-agent@v0.7.0
1818
with:
1919
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

.github/workflows/release-start.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Start new release
1414
runs-on: macos-14
1515
steps:
16-
- name: Connect iOS Bot
16+
- name: Connect Bot
1717
uses: webfactory/ssh-agent@v0.7.0
1818
with:
1919
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

.github/workflows/sdk-size-metrics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
env:
2020
GITHUB_TOKEN: '${{ secrets.CI_BOT_GITHUB_TOKEN }}'
2121
steps:
22-
- name: Connect iOS Bot
22+
- name: Connect Bot
2323
uses: webfactory/ssh-agent@v0.7.0
2424
with:
2525
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

.github/workflows/smoke-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
env:
7373
XCODE_VERSION: "15.0.1"
7474
steps:
75-
- name: Connect iOS Bot
75+
- name: Connect Bot
7676
uses: webfactory/ssh-agent@v0.7.0
7777
with:
7878
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ end
629629

630630
private_lane :create_pr_comment do |options|
631631
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'")
633633
edit_last_comment = options[:edit_last_comment_with_text] && last_comment.include?(options[:edit_last_comment_with_text]) ? '--edit-last' : ''
634634
sh("gh pr comment #{options[:pr_num]} #{edit_last_comment} -b '#{options[:text]}'")
635635
end

0 commit comments

Comments
 (0)