forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 936 Bytes
/
auto-update.yml
File metadata and controls
37 lines (33 loc) · 936 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
name: 'Make Commit'
on:
schedule:
# Every day at 23:30 UTC.
- cron: '30 23 * * *'
push:
branches: ['master']
workflow_dispatch:
permissions:
contents: 'read'
pages: 'write'
id-token: 'write'
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
runs-on: 'ubuntu-latest'
permissions:
contents: 'write'
pull-requests: 'write'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-node@v4'
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- run: 'npm clean-install'
- run: 'node ./cli.js build-xregistry'
- uses: peter-evans/create-pull-request@v7