Skip to content

Commit c3e8b23

Browse files
authored
run 'Check all English links' on ubuntu-20.04-xl (github#28566)
* run 'Check all English links' on ubuntu-latest * that didn't work * ubuntu-20.04-xl * increase patience in waiting for server
1 parent 0292911 commit c3e8b23

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/check-all-english-links.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ jobs:
1717
check_all_english_links:
1818
name: Check all links
1919
if: github.repository == 'github/docs-internal'
20-
runs-on: self-hosted
20+
runs-on: ubuntu-20.04-xl
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
2323
FIRST_RESPONDER_PROJECT: Docs content first responder
2424
REPORT_AUTHOR: docubot
2525
REPORT_LABEL: broken link report
2626
REPORT_REPOSITORY: github/docs-content
2727
steps:
28+
- name: Check that gh CLI is installed
29+
run: gh --version
30+
2831
- name: Check out repo's default branch
2932
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
3033
- name: Setup Node
@@ -60,8 +63,8 @@ jobs:
6063
DISABLE_REWRITE_ASSET_URLS: true
6164
run: |
6265
node server.mjs > /tmp/stdout.log 2> /tmp/stderr.log &
63-
sleep 5
64-
curl --retry-connrefused --retry 4 -I http://localhost:4000/
66+
sleep 6
67+
curl --retry-connrefused --retry 5 -I http://localhost:4000/
6568
6669
- if: ${{ failure() }}
6770
name: Debug server outputs on errors

0 commit comments

Comments
 (0)