-
Notifications
You must be signed in to change notification settings - Fork 72
50 lines (43 loc) · 1.5 KB
/
update-tr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
name: Update TR report
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Reffy's crawler
run: |
mkdir report
node_modules/.bin/reffy --release --post csscomplete --post annotatelinks --post patchdfns --output report --fallback tr/index.json
# Update another Webref checkout to reduce the chances that the version we
# checked out is no longer in sync with origin by the time the crawl is over
- name: Checkout webref
uses: actions/checkout@v4
with:
path: webref
- name: Copy report
run: rsync -av report/ webref/tr/
- name: Drop extract files from specs that are no longer crawled
run: node tools/clean-dropped-specs-files.js tr
working-directory: webref
- name: Push updates to git
run: |
git config user.name "reffy-bot"
git config user.email "<>"
git remote set-url --push origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git add -A
REFFY_SHA=$(../node_modules/.bin/reffy --version)
git commit -m "Update of TR report from new reffy run" -m "Using reffy commit $REFFY_SHA."
git push origin HEAD:main
working-directory: webref