CHECK_UPDATE #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |