-
Notifications
You must be signed in to change notification settings - Fork 9
46 lines (37 loc) · 945 Bytes
/
update_urls.yml
File metadata and controls
46 lines (37 loc) · 945 Bytes
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
name: Update URLs
run-name: Update URLs
on:
workflow_dispatch:
# weekly workflow runs
schedule:
- cron: "0 0 * * 0"
permissions:
contents: write
jobs:
update_urls:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
token: ${{ secrets.GH_TOKEN }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: "updateURLs"
- name: Install dependencies
run: |
cd updateURLs
npm ci
- name: Check for URL updates
id: update-urls
run: |
cd updateURLs
node updateURLs.js
- name: Update urls.json
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: ${{ steps.update-urls.outputs.COMMIT_MESSAGE }}
file_pattern: urls.json