Skip to content

Commit 1e0f124

Browse files
jsorefkaibolay
andauthored
Spelling (#2543)
https://www.check-spelling.dev/ --------- Signed-off-by: Josh Soref <[email protected]> Co-authored-by: Kai Bolay <[email protected]>
1 parent d828415 commit 1e0f124

File tree

113 files changed

+274
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+274
-274
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
schedule:
2121
- cron: '32 22 * * 6'
2222

23-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
23+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
2424
contents: read
2525

2626
jobs:

.github/workflows/generate_release_notes.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "[Release] Step 1: Generate release notes"
33
on:
44
workflow_dispatch:
55

6-
# limit the permissions of the GITHIUB_TOKEN to reading repository contents
6+
# limit the permissions of the GITHUB_TOKEN to reading repository contents
77
# the subsequent pull request uses a token from the 'generate-token' step
88
permissions:
99
contents: read
@@ -55,6 +55,6 @@ jobs:
5555
labels: |
5656
automated pr
5757
release
58-
reviewers: adamvduke,jakeouellette,tonybaroneee
58+
reviewers: kaibolay,jakeouellette,tonybaroneee
5959
owners
6060
draft: false

.github/workflows/integration_tests_pointer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
repository_dispatch:
77
types: [ integration-pointer]
88

9-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
9+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1010
contents: read
1111

1212
jobs:

.github/workflows/macos_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- '*'
1010

11-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
11+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1212
contents: read
1313

1414
jobs:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
tags: v*
1313

1414
# TODO: update workflow permissions to least privilege after auditing all the APIs used
15-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
15+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1616
# contents: read
1717

1818
jobs:

.github/workflows/release_flank_scripts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'master'
99

1010
# TODO: update workflow permissions to least privilege after auditing all the APIs used
11-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
11+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1212
# contents: read
1313

1414
jobs:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Gradle
2929
uses: gradle/actions/setup-gradle@v4
3030

31-
- name: Gradle Upload to Github packages and Github release
31+
- name: Gradle Upload to GitHub packages and GitHub release
3232
env:
3333
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
run: ./gradlew flank-scripts:releaseFlankScripts -PGITHUB_TOKEN="$GH_TOKEN"

.github/workflows/release_flank_wrapper.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'master'
99

1010
# TODO: update workflow permissions to least privilege after auditing all the APIs used
11-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
11+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1212
# contents: read
1313

1414
jobs:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Gradle
2929
uses: gradle/actions/setup-gradle@v4
3030

31-
- name: Gradle Upload to Github packages and Github release
31+
- name: Gradle Upload to GitHub packages and GitHub release
3232
env:
3333
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
run: ./gradlew flank-wrapper:releaseFlankWrapper -PGITHUB_TOKEN="$GH_TOKEN"

.github/workflows/run_integration_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch: # or manually
77

88
# TODO: update workflow permissions to least privilege after auditing all the APIs used
9-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
9+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1010
# contents: read
1111

1212
jobs:

.github/workflows/tag_next_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: [ closed ]
77

88
# TODO: update workflow permissions to least privilege after auditing all the APIs used
9-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
9+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1010
# contents: read
1111

1212
jobs:

.github/workflows/ubuntu_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- '*'
1010

11-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
11+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1212
contents: read
1313

1414
jobs:

.github/workflows/update_dependencies.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
# TODO: update workflow permissions to least privilege after auditing all the APIs used
7-
# permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
7+
# permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
88
# contents: read
99

1010
jobs:
@@ -58,7 +58,7 @@ jobs:
5858
labels: |
5959
automated pr
6060
dependencies
61-
reviewers: adamvduke,jakeouellette,tonybaroneee
61+
reviewers: kaibolay,jakeouellette,tonybaroneee
6262
draft: false
6363

6464
update_firebase_api:
@@ -102,8 +102,8 @@ jobs:
102102
body: "Firebase Api update"
103103
labels: |
104104
automated pr
105-
firease_api
106-
reviewers: adamvduke,jakeouellette,tonybaroneee
105+
firebase_api
106+
reviewers: kaibolay,jakeouellette,tonybaroneee
107107
draft: false
108108

109109
check_for_sdk_updates:

.github/workflows/update_dependencies_pointer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
repository_dispatch:
77
types: [ dependencies-pointer ]
88

9-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
9+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
1010
contents: read
1111

1212
jobs:

.github/workflows/windows_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- '*'
77

8-
permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents
8+
permissions: # limit the permissions of the GITHUB_TOKEN to reading repository contents
99
contents: read
1010

1111
jobs:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Flank is YAML compatible with [the gcloud CLI](https://cloud.google.com/sdk/gclo
77
### Documentation is at [flank.github.io/flank](https://flank.github.io/flank/)
88

99

10-
### Github action documentation is at [repository](https://github.com/Flank/flank/blob/master/docs/flank-github-action/store_documentation.md)
10+
### GitHub action documentation is at [repository](https://github.com/Flank/flank/blob/master/docs/flank-github-action/store_documentation.md)

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'Flank'
2-
description: 'Run Flank from Github actions!'
2+
description: 'Run Flank from GitHub actions!'
33
inputs:
44
version:
55
description: 'Flank version to run'

check_version_updated/src/main/kotlin/com/github/flank/gradle/CheckVersionUpdated.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ class CheckVersionUpdated : Plugin<Project> {
3232

3333
val localResultsStream = execAndGetStdout("git", "diff", "origin/master", "HEAD", "--", "build.gradle.kts")
3434
.split("\n")
35-
val commitedResultsStream = execAndGetStdout("git", "diff", "origin/master", "--", "build.gradle.kts")
35+
val committedResultsStream = execAndGetStdout("git", "diff", "origin/master", "--", "build.gradle.kts")
3636
.split("\n")
37-
return (commitedResultsStream + localResultsStream)
37+
return (committedResultsStream + localResultsStream)
3838
.filter { it.startsWith("-version = ") || it.startsWith("+version = ") }
3939
.isNotEmpty()
4040
}

check_version_updated/src/main/kotlin/com/github/flank/gradle/CheckVersionUpdatedTask.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ open class CheckVersionUpdatedTask : DefaultTask() {
4343
private fun Project.isVersionChangedInBuildGradle(): Boolean {
4444
val localResultsStream = execAndGetStdout("git", "diff", "origin/master", "HEAD", "--", "build.gradle.kts")
4545
.split("\n")
46-
val commitedResultsStream = execAndGetStdout("git", "diff", "origin/master", "--", "build.gradle.kts")
46+
val committedResultsStream = execAndGetStdout("git", "diff", "origin/master", "--", "build.gradle.kts")
4747
.split("\n")
48-
return (commitedResultsStream + localResultsStream)
48+
return (committedResultsStream + localResultsStream)
4949
.any { it.startsWith("-version = ") || it.startsWith("+version = ") }
5050
}
5151

contributing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ There is a [`Debug.kt`](https://github.com/Flank/flank/blob/master/test_runner/s
2727

2828
Note: The breakpoints will only hit for the actual command being run. For example, for `firebase test android run`, the debugger will directly enter [`AndroidRunCommand`](https://github.com/Flank/flank/blob/master/test_runner/src/main/kotlin/ftl/cli/firebase/test/android/AndroidRunCommand.kt).
2929

30-
The yml file being read is located [here](https://github.com/Flank/flank/blob/master/test_runner/flank.yml).
30+
The yml file being read is located at [test_runner/flank.yml](https://github.com/Flank/flank/blob/master/test_runner/flank.yml).
3131

3232
Run `./gradlew check` to fix lint issues
3333

3434
## Adding new gcloud property common to iOS and Android
3535

3636
- Add property to `GcloudYml` and update `keys` in config files
3737
- Update `IArgs` with new property
38-
- Update `AndroidArgs` to reference the propery and update `toString`
39-
- Update `IosArgs` to reference the propery and `toString`
38+
- Update `AndroidArgs` to reference the property and update `toString`
39+
- Update `IosArgs` to reference the property and `toString`
4040
- Add test to `IosArgsTest`
4141
- Add test to `IosRunCommandTest` and update `empty_params_parse_null` test
4242
- Add test to `AndroidArgsTest`

docs/bugs/872_error_when_parsing_Junit_raport_using_TeamCityCI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ But when user back to old configuration, he can still reproduce problem.
178178

179179
#### Issue reported to TeamCity https://youtrack.jetbrains.com/issue/TW-66753
180180

181-
TeamCity team cannot reproduce the problem, thay asked about additional logs, but User could deliver them in next week (starting 13-07-2020), until that we must wait.
181+
TeamCity team cannot reproduce the problem, they asked about additional logs, but User could deliver them in next week (starting 13-07-2020), until that we must wait.
182182

183183

184184

docs/bugs/891-rate-limit-exceeded.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ forEach(test matrix) {
202202
}
203203
```
204204

205-
## API calls usage comparision table
205+
## API calls usage comparison table
206206
Following table should compare API calls complexity.
207207

208208
| | execution status updates |
@@ -219,7 +219,7 @@ E - count of test executions in matrix scope
219219
```
220220

221221
## Conclusions
222-
#### Gclud
222+
#### Gcloud
223223
Because of single matrix run gives only 1 request per 6 seconds
224224

225225
#### Flank v20.05.2

docs/bugs/993_multiple_identical_lines_printing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ It always executes on the same thread so it is not a concurrency issue
2121

2222
- [X] on ```ExecutionStatusPrinter.kt``` -> ```MultiLinePrinter``` try to force add to output two same ExecutionStatus but no effect
2323

24-
- [X] on ```GcTestMatrix.kt``` -> ```refresh()``` try to add testSpecyfication with same id but without effect
24+
- [X] on ```GcTestMatrix.kt``` -> ```refresh()``` try to add testSpecification with same id but without effect

docs/bugs/null_no_tests_found.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ gcloud:
8080
use-orchestrator: true
8181
```
8282
83-
## Reported flade config
83+
## Reported fladle config
8484
```groovy
8585
fladle {
8686
serviceAccountCredentials = file("pathToCredentials")
@@ -120,4 +120,4 @@ fladle {
120120
* Create multi-module project which will provide many test apks and try to reproduce issue.
121121
* Ensure that our knowledge about issue in `What we know from report issue` is correct.
122122
* Based on: https://stackoverflow.com/questions/39241640/android-instrumented-test-no-tests-found try to make real multi dex app and try trun tests on it
123-
* Play with @BefeoreClass and @Before annotations (exception on @BeforeClass produce null without test cases on test-lab).
123+
* Play with @BeforeClass and @Before annotations (exception on @BeforeClass produce null without test cases on test-lab).

docs/building_updating_flank.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Building and Updating Flank
2-
Ensure that all steps taken for contributing and building Flank have been followed, which are found [here](../README.md)
2+
Ensure that you have followed all steps for [contributing and building Flank](../README.md)
33

44
## Building an updated flank
55
To build an updated version of flank from source simply run (This assumes you are in the root Flank directory)

docs/client_generation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Google API clients (`google-api-*-client`)
1414
- Low level
1515
- Auto generated
1616
- Made for JSON REST APIs
17-
- Older project - [maintence mode](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues/1604#issuecomment-316834237)
17+
- Older project - [maintenance mode](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues/1604#issuecomment-316834237)
1818

1919
Google APIs toolkit (`googleapis/toolkit`)
2020
- Low level
@@ -36,7 +36,7 @@ Google Cloud libraries (`google-cloud-*`)
3636
- [google-api-go-client](https://github.com/google/google-api-go-client)
3737
- [google-api-go-generator](https://github.com/google/google-api-go-client/tree/master/google-api-go-generator)
3838
- [google-api-java-client](https://github.com/google/google-api-java-client)
39-
- [google-api-javascript-client](https://github.com/google/google-api-javascript-client) - not offically [marked as maintence,](https://github.com/google/google-api-javascript-client/issues/320) however no new updates since May 2017.
39+
- [google-api-javascript-client](https://github.com/google/google-api-javascript-client) - not officially [marked as maintenance,](https://github.com/google/google-api-javascript-client/issues/320) however no new updates since May 2017.
4040
- [google-api-dotnet-client](https://github.com/google/google-api-dotnet-client)
4141
- [google-api-objectivec-client](https://github.com/google/google-api-objectivec-client)
4242
- Deprecated. Replaced entirely by [google-api-objectivec-client-for-rest](https://github.com/google/google-api-objectivec-client-for-rest)

docs/dependencies_update_process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Process run commands and update files with defined versions in the provided file
66
### Modules
77
0. [Gradle Versions Plugin](https://github.com/ben-manes/gradle-versions-plugin) which check dependencies version and generate report
88
0. [Command](../flank-scripts/README.md#dependencies) in `flank-scripts` which update dependencies versions
9-
0. Github action job which runs dependencies check every Monday at 5 AM UTC or on-demand
9+
0. GitHub action job which runs dependencies check every Monday at 5 AM UTC or on-demand
1010

1111
## Usage
1212

@@ -15,8 +15,8 @@ Process run commands and update files with defined versions in the provided file
1515
0. Build flank scripts using script `./flank-scripts/bash/buildFlankScripts.sh`
1616
0. Run `./flank-scripts/bash/flankScripts dependencies update`
1717

18-
### Github action
19-
Run `Update dependencies` job using [Github action menu](https://github.com/Flank/flank/actions) by clicking `Run workflow` button
18+
### GitHub action
19+
Run `Update dependencies` job using [GitHub action menu](https://github.com/Flank/flank/actions) by clicking `Run workflow` button
2020

2121
## Merging to master
2222

docs/feature/summary_output.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Gcloud is using following API calls
7272
2. `self._client.projects_histories_executions_steps.List(request)`
7373

7474
The first one is default, but if returns any `environment` without `environmentResult.outcome`, the second one will be used to obtain `steps`.
75-
Both `environemnts` and `steps` can provide `outcome`. The difference between them is the `steps` returns `success` event if tests are `flaky`.
75+
Both `environments` and `steps` can provide `outcome`. The difference between them is the `steps` returns `success` event if tests are `flaky`.
7676
Currently, we don't know why `self._client.projects_histories_executions_environments.List(request)` may return empty `environmentResult.outcome`.
7777

7878
In difference to gcloud flank uses 3 api call to obtain necessary data

0 commit comments

Comments
 (0)