Skip to content

Commit

Permalink
Update name of CI job in sizebot (#15767)
Browse files Browse the repository at this point in the history
Same as #15714. I moved the artifacts step to a different job, so I
need to update the name in the sizebot script to match.
  • Loading branch information
acdlite committed May 29, 2019
1 parent 1cc3bba commit 8ce8b9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Expand Up @@ -132,6 +132,7 @@ jobs:
- facebook-www
- node_modules
- react-native
- dist
- sizes/*.json

process_artifacts:
Expand Down
2 changes: 1 addition & 1 deletion dangerfile.js
Expand Up @@ -136,7 +136,7 @@ function git(args) {
for (let i = 0; i < statuses.length; i++) {
const status = statuses[i];
// This must match the name of the CI job that creates the build artifacts
if (status.context === 'ci/circleci: build') {
if (status.context === 'ci/circleci: process_artifacts') {
if (status.state === 'success') {
baseCIBuildId = /\/facebook\/react\/([0-9]+)/.exec(
status.target_url
Expand Down

0 comments on commit 8ce8b9a

Please sign in to comment.