Skip to content

Commit dc56eb9

Browse files
Luna Weifacebook-github-bot
Luna Wei
authored andcommitted
Fix missing renames from bots to react-native-bots (#34713)
Summary: Pull Request resolved: #34713 Changelog: [Internal] - Fix up missing bots usage after we moved everything to packages/react-native-bots in 767f8e0 Reviewed By: NickGerleman Differential Revision: D39583230 fbshipit-source-id: 6cc6b7923e67139dc3c81dfe0c39005dde905248
1 parent 7003fcd commit dc56eb9

8 files changed

+6
-8
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
**/main.js
22
**/staticBundle.js
3-
bots/node_modules
43
docs/generatedComponentApiDocs.js
54
flow/
65
flow-typed/

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PROJECT_ROOT>/template/.*
77

88
; Ignore the Dangerfile
9-
<PROJECT_ROOT>/bots/dangerfile.js
9+
<PROJECT_ROOT>/packages/react-native-bots/dangerfile.js
1010

1111
; Ignore "BUCK" generated dirs
1212
<PROJECT_ROOT>/\.buckd/

.flowconfig.android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PROJECT_ROOT>/template/.*
77

88
; Ignore the Dangerfile
9-
<PROJECT_ROOT>/bots/dangerfile.js
9+
<PROJECT_ROOT>/packages/react-native-bots/dangerfile.js
1010

1111
; Ignore "BUCK" generated dirs
1212
<PROJECT_ROOT>/\.buckd/

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# GitHub Settings, Bots
1111
/.github/ @hramos
12-
/bots @hramos
12+
/packages/react-native-bots @hramos
1313

1414
# Continuous Integration
1515
/.circleci/ @hramos

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ local.properties
6868
node_modules
6969
*.log
7070
.nvm
71-
/bots/node_modules/
7271
package-lock.json
7372

7473
# OS X

scripts/circleci/analyze_code.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GITHUB_REPO=${CIRCLE_PROJECT_REPONAME:-react-native}
99
export GITHUB_OWNER
1010
export GITHUB_REPO
1111

12-
cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow-check-ios --silent --json; echo flow; npm run flow-check-android --silent --json; echo google-java-format; node scripts/lint-java.js --diff) | GITHUB_PR_NUMBER="$CIRCLE_PR_NUMBER" node bots/code-analysis-bot.js
12+
cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow-check-ios --silent --json; echo flow; npm run flow-check-android --silent --json; echo google-java-format; node scripts/lint-java.js --diff) | GITHUB_PR_NUMBER="$CIRCLE_PR_NUMBER" node packages/react-native-bots/code-analysis-bot.js
1313

1414
STATUS=$?
1515
if [ $STATUS == 0 ]; then

scripts/circleci/post-artifacts-link.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ GITHUB_OWNER=${CIRCLE_PROJECT_USERNAME:-facebook} \
88
GITHUB_REPO=${CIRCLE_PROJECT_REPONAME:-react-native} \
99
GITHUB_PR_NUMBER="${CIRCLE_PR_NUMBER:-${CIRCLE_PULL_REQUEST##*/}}" \
1010
GITHUB_SHA=${CIRCLE_SHA1} \
11-
exec node bots/post-artifacts-link.js
11+
exec node packages/react-native-bots/post-artifacts-link.js

scripts/circleci/report-bundle-size.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ case $1 in
1111
GITHUB_PR_NUMBER="${CIRCLE_PR_NUMBER:-${CIRCLE_PULL_REQUEST##*/}}" \
1212
GITHUB_REF=${CIRCLE_BRANCH} \
1313
GITHUB_SHA=${CIRCLE_SHA1} \
14-
exec node bots/report-bundle-size.js "$1"
14+
exec node packages/react-native-bots/report-bundle-size.js "$1"
1515
;;
1616
*)
1717
echo "Syntax: $0 [android | ios]"

0 commit comments

Comments
 (0)