Skip to content

Commit 8ade640

Browse files
committed
GitHub
1 parent 49946d7 commit 8ade640

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docusaurus/docs/cypress/cookbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You should replace `$MY_CI_BUILD_ID` with the correct environment variable provi
5959
| Codeship Pro | `CI_BUILD_ID` |
6060
| Drone | `DRONE_BUILD_NUMBER` |
6161
| Gitlab | `CI_PIPELINE_ID` |
62-
| Github Actions | `GITHUB_RUN_ID` |
62+
| GitHub Actions | `GITHUB_RUN_ID` |
6363
| Heroku | `HEROKU_TEST_RUN_ID` |
6464
| Jenkins | `BUILD_NUMBER` |
6565
| Semaphore 1.0 | `SEMAPHORE_BUILD_NUMBER` |

docusaurus/docs/ruby/puffing-billy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is needed only if you are using Knapsack Pro in [Queue Mode](../overview/in
1111

1212
:::
1313

14-
If you use the [puffing-billy](https://github.com/oesmith/puffing-billy) gem and encounter the crash described in this [Github issue](https://github.com/oesmith/puffing-billy/issues/253), apply the following patch:
14+
If you use the [puffing-billy](https://github.com/oesmith/puffing-billy) gem and encounter the crash described in this [GitHub issue](https://github.com/oesmith/puffing-billy/issues/253), apply the following patch:
1515

1616
```ruby
1717
# rails_helper.rb or spec_helper.rb

docusaurus/docs/ruby/rspec.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ You need to install the [`rspec_junit_formatter`](https://github.com/sj26/rspec_
102102
end
103103
```
104104

105-
`FINAL_REPORT` will contain all the tests run on the CI node (not just the last subset). For more information, you can read this [Github issue](https://github.com/KnapsackPro/knapsack_pro-ruby/issues/40).
105+
`FINAL_REPORT` will contain all the tests run on the CI node (not just the last subset). For more information, you can read this [GitHub issue](https://github.com/KnapsackPro/knapsack_pro-ruby/issues/40).
106106

107107
If your CI nodes write to the same disk, you need to append the CI node index to the solution presented above to avoid conflicts:
108108

@@ -159,7 +159,7 @@ You need to install the [`rspec_junit_formatter`](https://github.com/sj26/rspec_
159159
end
160160
```
161161

162-
`FINAL_REPORT` will contain all the tests run on the CI node (not just the last subset). For more information, you can read this [Github issue](https://github.com/KnapsackPro/knapsack_pro-ruby/issues/40).
162+
`FINAL_REPORT` will contain all the tests run on the CI node (not just the last subset). For more information, you can read this [GitHub issue](https://github.com/KnapsackPro/knapsack_pro-ruby/issues/40).
163163

164164
If your CI nodes write to the same disk, you need to append the CI node index to the solution presented above to avoid conflicts:
165165

docusaurus/docs/ruby/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ For example, you could use 600 seconds (10 minutes) if you know that your tests
183183

184184
:::tip
185185

186-
Check your CI provider documentation to configure a timeout if you worry about wasting resources on the hanging CI node. For example, Github Actions uses:
186+
Check your CI provider documentation to configure a timeout if you worry about wasting resources on the hanging CI node. For example, GitHub Actions uses:
187187

188188
* [`jobs.<job_id>.timeout-minutes`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes) - The maximum number of minutes to let a job run before GitHub automatically cancels it.
189189
* [`jobs.<job_id>.steps[*].timeout-minutes`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepstimeout-minutes) - The maximum number of minutes to run the step before killing the process.

0 commit comments

Comments
 (0)