1name: Manifest 2on: 3 pull_request_target: 4 5jobs: 6 contribs: 7 runs-on: ubuntu-22.04 8 name: Manifest 9 steps: 10 - name: Checkout the code 11 uses: actions/checkout@v3 12 with: 13 path: zephyrproject/zephyr 14 ref: ${{ github.event.pull_request.head.sha }} 15 fetch-depth: 0 16 persist-credentials: false 17 18 - name: Manifest 19 uses: zephyrproject-rtos/action-manifest@a6d0c6e52bbbb7d6df23ceb42842edcb4582b8dc 20 with: 21 github-token: ${{ secrets.ZB_GITHUB_TOKEN }} 22 manifest-path: 'west.yml' 23 checkout-path: 'zephyrproject/zephyr' 24 label-prefix: 'manifest-' 25 verbosity-level: '1' 26 labels: 'manifest' 27 dnm-labels: 'DNM' 28