actions: Enable new manifest workflow
The manifest workflow uses the manifest action to detect changes in the west manifest. It then analyzes the changes and posts labels and a comment in table format accordingly. It is meant to be used as a helper bot for developers submitting changes to modules, reducing the need for manual work and oversight and automating common operations. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
8bf3ee9f98
commit
f97b07bc3f
18
.github/workflows/manifest.yml
vendored
Normal file
18
.github/workflows/manifest.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Manifest
|
||||
on:
|
||||
- pull_request_target
|
||||
|
||||
jobs:
|
||||
contribs:
|
||||
runs-on: ubuntu-latest
|
||||
name: Manifest
|
||||
steps:
|
||||
- name: Manifest
|
||||
uses: zephyrproject-rtos/action-manifest@main
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
manifest-path: 'west.yml'
|
||||
label-prefix: 'manifest-'
|
||||
verbosity-level: '1'
|
||||
labels: 'manifest, west'
|
||||
dnm-labels: 'DNM'
|
Loading…
Reference in a new issue