-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fix update-sdks job, incorrect repo value (#30)
- Loading branch information
1 parent
d6772b6
commit 492110d
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,9 @@ jobs: | |
name: "Update Android SDK" | ||
runs-on: ubuntu-latest | ||
env: | ||
GIT_AUTHOR_NAME: mparticle-bot | ||
GIT_AUTHOR_NAME: mparticle-automation | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: mparticle-bot | ||
GIT_COMMITTER_NAME: mparticle-automation | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
steps: | ||
- name: "Download Android Maven Metadata" | ||
|
@@ -60,9 +60,9 @@ jobs: | |
needs: update-android-sdk | ||
runs-on: macos-latest | ||
env: | ||
GIT_AUTHOR_NAME: mparticle-bot | ||
GIT_AUTHOR_NAME: mparticle-automation | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: mparticle-bot | ||
GIT_COMMITTER_NAME: mparticle-automation | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
|
@@ -96,9 +96,9 @@ jobs: | |
needs: update-apple-sdk | ||
runs-on: ubuntu-latest | ||
env: | ||
GIT_AUTHOR_NAME: mparticle-bot | ||
GIT_AUTHOR_NAME: mparticle-automation | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: mparticle-bot | ||
GIT_COMMITTER_NAME: mparticle-automation | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
steps: | ||
- name: "Checkout" | ||
|
@@ -127,7 +127,7 @@ jobs: | |
github.pulls.create({ | ||
title: 'chore: update sdk artifacts', | ||
owner: context.repo.owner, | ||
repo: context.payload.repository.name, | ||
repo: context.repo.repo, | ||
head: 'chore/update-sdks', | ||
base: 'main' | ||
}); |