1
0
mirror of synced 2026-01-05 21:04:17 -05:00

add docs-early-access for github/github link checker (#29620)

This commit is contained in:
Peter Bengtsson
2022-08-05 14:36:45 +02:00
committed by GitHub
parent 5d017c9ba9
commit d8ae884d69

View File

@@ -40,6 +40,17 @@ jobs:
- name: Checkout
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
# To prevent issues with cloning early access content later
persist-credentials: 'false'
- name: Clone docs-early-access
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-early-access
token: ${{ secrets.DOCUBOT_REPO_PAT }}
path: docs-early-access
ref: main
- name: Setup Node
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048
@@ -47,6 +58,9 @@ jobs:
node-version: '16.15.0'
cache: npm
- name: Merge docs-early-access repo's folders
run: .github/actions-scripts/merge-early-access.sh
- name: Install Node.js dependencies
run: npm ci