Files
hawkbit/.github/workflows/verify-hibernate.yaml
Avgustin Marinov 598567e08f Remove site/ replaces by docs/ (#2803)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
2025-11-13 15:56:41 +02:00

27 lines
749 B
YAML

name: Verify (Hibernate)
on:
push:
branches:
- master
paths-ignore:
- '.3rd-party/**'
- 'docs/**'
- '**.md'
pull_request:
paths-ignore:
- '.3rd-party/**'
- 'docs/**'
- '**.md'
workflow_dispatch:
permissions:
contents: read
jobs:
verify-hibernate:
uses: ./.github/workflows/reusable_workflow_verify.yaml
with:
repository: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || github.ref }}
maven_properties: '-Djpa.vendor=hibernate -Dlogging.level.org.hibernate.collection.spi.AbstractPersistentCollection=ERROR'