Skip to content

Commit

Permalink
[CI] Fix snapshots workflow (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple authored Oct 16, 2023
1 parent f6ffabd commit 9aed066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
needs: build-test-app-and-frameworks
if: ${{ github.event_name != 'push' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CI_BOT_GITHUB_TOKEN }} # to open a PR
GITHUB_PR_NUM: ${{ github.event.number }}
steps:
- uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ private_lane :test_ui do |options|
sh("git commit -m '#{title}'")
push_to_git_remote(tags: false)
create_pull_request(
api_token: params[:github_token],
repo: params[:github_repo],
api_token: ENV.fetch('GITHUB_TOKEN', nil),
repo: github_repo,
title: title,
head: head,
base: base,
Expand Down

0 comments on commit 9aed066

Please sign in to comment.