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