30 lines
781 B
YAML
30 lines
781 B
YAML
name: Manifest
|
|
on:
|
|
pull_request_target:
|
|
paths:
|
|
- 'west.yml'
|
|
|
|
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
|
|
persist-credentials: false
|
|
|
|
- name: Manifest
|
|
uses: zephyrproject-rtos/action-manifest@f54422ea250adb7cc1b9f62bfe125978bb2c58ee
|
|
with:
|
|
github-token: ${{ secrets.ZB_GITHUB_TOKEN }}
|
|
manifest-path: 'west.yml'
|
|
checkout-path: 'zephyrproject/zephyr'
|
|
label-prefix: 'manifest-'
|
|
verbosity-level: '1'
|
|
labels: 'manifest, west'
|
|
dnm-labels: 'DNM'
|