-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.16 KB
/
CHECK_UPDATE.yml
File metadata and controls
41 lines (39 loc) · 1.16 KB
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
name: CHECK_UPDATE
on:
workflow_dispatch:
schedule:
- cron: '17 9 * * 2' # Every Tuesday at 9:17 AM (random time to distribute load)
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 24 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Setup project
uses: bpmn-io/actions/setup@latest
- name: Checkout camunda-docs
uses: actions/checkout@v6
with:
repository: camunda/camunda-docs
path: camunda-docs
- name: Update builtins
run: npm run compile-builtins
- name: Create PRs automatically
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
with:
commit-message: 'chore: update builtins'
branch: update-builtins
title: 'Update builtins'
body: |
:robot: Automated PR to update builtin functions