mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 07:54:35 +00:00
The manifest GitHub action now optionally takes a checked out tree in order to find the merge base of the pull request branch. Provide this to avoid artifacts in edge cases. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
27 lines
676 B
YAML
27 lines
676 B
YAML
name: Manifest
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
contribs:
|
|
runs-on: ubuntu-latest
|
|
name: Manifest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: zephyrproject/zephyr
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 0
|
|
|
|
- name: Manifest
|
|
uses: zephyrproject-rtos/action-manifest@main
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manifest-path: 'west.yml'
|
|
checkout-path: 'zephyrproject/zephyr'
|
|
label-prefix: 'manifest-'
|
|
verbosity-level: '1'
|
|
labels: 'manifest, west'
|
|
dnm-labels: 'DNM'
|