* Stale workflow only on hawkbit project Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com> * Fix verifying PR - checkout from the repo --------- Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
26 lines
593 B
YAML
26 lines
593 B
YAML
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:
|
|
repository: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repository || github.repositor }}
|
|
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || github.ref }} |