Skip to content

CHECK_UPDATE

CHECK_UPDATE #16

Workflow file for this run

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: [ 20 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
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@v4
with:
repository: camunda/camunda-docs
path: camunda-docs
- name: Update builtins
run: npm run compile-builtins
- name: All
run: npm run all
- name: Create PRs automatically
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
commit-message: 'chore: update builtins'
branch: update-builtins
title: 'Update builtins'
body: |
:robot: Automated PR to update builtin functions