Skip to content

Commit d4fc906

Browse files
authored
Fix GitHub capitalization across repo (#9605)
1 parent 415e9ea commit d4fc906

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ template_path=.github/ISSUE_TEMPLATE/bug_report.md
99
### Step 0: Are you in the right place?
1010

1111
* For issues or feature requests related to __the code in this repository__
12-
file a Github issue.
12+
file a GitHub issue.
1313
* If this is a __feature request__ please use the Feature Request template.
1414
* For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/)
1515
with the `firebase` tag.

.github/actions/testing_report_generation/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
required: true
1010
default: 'nightly-testing'
1111
issue-title:
12-
description: 'Title of a Github Issue'
12+
description: 'Title of a GitHub Issue'
1313
required: true
1414
default: 'Nightly Testing Report'
1515
assignee:

SharedTestUtilities/FIRSampleAppUtilities.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
NSString *const kGoogleAppIDPlistKey = @"GOOGLE_APP_ID";
2828
// Dummy plist GOOGLE_APP_ID
2929
NSString *const kDummyGoogleAppID = @"1:123:ios:123abc";
30-
// Github Repo URL String
31-
NSString *const kGithubRepoURLString = @"https://github.com/firebase/firebase-ios-sdk/";
30+
// GitHub Repo URL String
31+
NSString *const kGitHubRepoURLString = @"https://github.com/firebase/firebase-ios-sdk/";
3232
// Alert contents
3333
NSString *const kInvalidPlistAlertTitle = @"GoogleService-Info.plist";
3434
NSString *const kInvalidPlistAlertMessage = @"This sample app needs to be updated with a valid "
3535
@"GoogleService-Info.plist file in order to configure "
3636
@"Firebase.\n\n"
3737
@"Please update the app with a valid plist file, "
38-
@"following the instructions in the Firebase Github "
38+
@"following the instructions in the Firebase GitHub "
3939
@"repository at: %@";
4040

4141
@implementation FIRSampleAppUtilities
@@ -81,16 +81,16 @@ + (BOOL)containsRealServiceInfoPlistInBundle:(NSBundle *)bundle {
8181

8282
+ (void)presentAlertForInvalidServiceInfoPlistFromViewController:
8383
(UIViewController *)viewController {
84-
NSString *message = [NSString stringWithFormat:kInvalidPlistAlertMessage, kGithubRepoURLString];
84+
NSString *message = [NSString stringWithFormat:kInvalidPlistAlertMessage, kGitHubRepoURLString];
8585
UIAlertController *alertController =
8686
[UIAlertController alertControllerWithTitle:kInvalidPlistAlertTitle
8787
message:message
8888
preferredStyle:UIAlertControllerStyleAlert];
8989
UIAlertAction *viewReadmeAction = [UIAlertAction
90-
actionWithTitle:@"View Github"
90+
actionWithTitle:@"View GitHub"
9191
style:UIAlertActionStyleDefault
9292
handler:^(UIAlertAction *_Nonnull action) {
93-
NSURL *githubURL = [NSURL URLWithString:kGithubRepoURLString];
93+
NSURL *githubURL = [NSURL URLWithString:kGitHubRepoURLString];
9494
[FIRSampleAppUtilities navigateToURL:githubURL fromViewController:viewController];
9595
}];
9696
[alertController addAction:viewReadmeAction];

scripts/check_firestore_core_api_absl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
the Unity SDK, when it is built from google3.
2020
"""
2121

22-
# TODO(b/192129206) : Remove this check once Unity SDK is built from Github.
22+
# TODO(b/192129206) : Remove this check once Unity SDK is built from GitHub.
2323
import argparse
2424
import logging
2525
import six

scripts/create_spec_repo/Sources/SpecRepoBuilder/main.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ struct SpecRepoBuilder: ParsableCommand {
113113
@Option(parsing: .upToNextOption, help: "Podspecs that will not be pushed to repo.")
114114
var excludePods: [String] = []
115115

116-
@Option(help: "Github Account Name.")
116+
@Option(help: "GitHub Account Name.")
117117
var githubAccount: String = "FirebasePrivate"
118118

119-
@Option(help: "Github Repo Name.")
119+
@Option(help: "GitHub Repo Name.")
120120
var sdkRepoName: String = "SpecsTesting"
121121

122122
@Option(help: "Local Podspec Repo Name.")

scripts/health_metrics/generate_code_coverage_report/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ comment of a pull request. If such comment has existed, this comment will be ove
2828
report.
2929

3030
Since the flag is `presubmit` here, the following options are required for a PR request:
31-
- `log-link`: Log link to unit tests. This is generally a actions/runs/ link in Github Actions.
31+
- `log-link`: Log link to unit tests. This is generally a actions/runs/ link in GitHub Actions.
3232
- `pull-request-num`: A report will be posted in this pull request.
3333
- `base-commit`: The commit sha used to compare the diff of the current`commit`.
3434

35-
An example in a Github Actions workflow:
35+
An example in a GitHub Actions workflow:
3636
```
3737
swift run CoverageReportGenerator --presubmit "firebase/firebase-ios-sdk" --commit "${GITHUB_SHA}" \
3838
--token $(gcloud auth print-identity-token) --xcresult-dir "/Users/runner/test/codecoverage" \

scripts/health_metrics/pod_test_code_coverage_report.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ else
6464
# Run unit tests of pods and put xcresult bundles into OUTPUT_PATH, which
6565
# should be a targeted dir of actions/upload-artifact in workflows.
6666
# In code coverage workflow, files under OUTPUT_PATH will be uploaded to
67-
# Github Actions.
67+
# GitHub Actions.
6868
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb "${SDK}".podspec --platforms="$(tr '[:upper:]' '[:lower:]'<<<${PLATFORM})" --test-specs="${TEST_SPEC}"
6969
fi
7070

0 commit comments

Comments
 (0)