Skip to content

deps: Update version.zeebe to v8.5.4 (stable/operate-8.5) #5280

deps: Update version.zeebe to v8.5.4 (stable/operate-8.5)

deps: Update version.zeebe to v8.5.4 (stable/operate-8.5) #5280

Workflow file for this run

# This GitHub Actions workflow that is triggered on push to `main` and `stable/**` branch or on any pull request creation
# and invokes `ci-build-reusable` and `ci-test-reusable` workflows.
---
name: Operate CI
on:
workflow_dispatch:
push:
branches:
- 'main'
- 'stable/**'
paths-ignore:
- '.github/workflows/zeebe-*'
- 'dist/**'
- 'zeebe/**'
- 'spring-boot-starter-camunda-sdk/**'
pull_request:
paths-ignore:
- '.github/workflows/zeebe-*'
- 'dist/**'
- 'zeebe/**'
- 'spring-boot-starter-camunda-sdk/**'
# This will limit the workflow to 1 concurrent run per ref (branch / PR).
# If a new commits occurs, the current run will be canceled to save costs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-build:
name: run-build
uses: ./.github/workflows/operate-ci-build-reusable.yml
secrets: inherit
with:
branch: ${{ github.head_ref || github.ref_name }} # head_ref = branch name on PR, ref_name = `main` or `stable/**`
run-tests:
name: run-tests
uses: ./.github/workflows/operate-ci-test-reusable.yml
secrets: inherit
with:
branch: ${{ github.head_ref || github.ref_name }}
test-summary:
# Used by the merge queue as a dummy instead of the Zeebe CI in case only Operate files got changed:
# https://github.com/orgs/community/discussions/26251
# This name is hard-coded in the branch rules; remember to update that if this name changes
name: Test summary
if: always()
runs-on: ubuntu-latest
steps:
- run: exit 0