From f97b07bc3f6a1dcb80cbc0da940f7516723d9b7a Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Tue, 24 Nov 2020 15:02:37 +0100 Subject: [PATCH] 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 --- .github/workflows/manifest.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/manifest.yml diff --git a/.github/workflows/manifest.yml b/.github/workflows/manifest.yml new file mode 100644 index 0000000000..83547721af --- /dev/null +++ b/.github/workflows/manifest.yml @@ -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'