Refactor workflows - user reusable workflows (#2504)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2025-06-27 10:51:20 +03:00
committed by GitHub
parent 4a6e862d57
commit a35201ac1c
16 changed files with 429 additions and 239 deletions

25
.github/workflows/verify.yaml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Verify
on:
push:
branches:
- master
paths-ignore:
- '.3rd-party/**'
- 'site/**'
- '**.md'
pull_request:
paths-ignore:
- '.3rd-party/**'
- 'site/**'
- '**.md'
workflow_dispatch:
permissions:
contents: read
jobs:
verify:
uses: ./.github/workflows/reusable_workflow_verify.yaml
with:
ref: ${{ github.event_name == 'push' && github.ref || github.event_name == 'pull_request' && github.event.pull_request.head.ref || github.event_name == 'workflow_dispatch' && github.ref }}