2020-11-24 22:02:37 +08:00
|
|
|
name: Manifest
|
|
|
|
on:
|
2021-01-19 00:51:24 +08:00
|
|
|
pull_request_target:
|
2020-11-24 22:02:37 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
contribs:
|
2023-03-19 02:41:01 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-24 22:02:37 +08:00
|
|
|
name: Manifest
|
|
|
|
steps:
|
2020-11-28 01:16:36 +08:00
|
|
|
- name: Checkout the code
|
2022-10-14 01:48:20 +08:00
|
|
|
uses: actions/checkout@v3
|
2020-11-28 01:16:36 +08:00
|
|
|
with:
|
|
|
|
path: zephyrproject/zephyr
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
fetch-depth: 0
|
2022-02-25 00:20:15 +08:00
|
|
|
persist-credentials: false
|
2020-11-28 01:16:36 +08:00
|
|
|
|
2023-09-08 15:39:36 +08:00
|
|
|
- name: west setup
|
|
|
|
env:
|
|
|
|
BASE_REF: ${{ github.base_ref }}
|
|
|
|
working-directory: zephyrproject/zephyr
|
|
|
|
run: |
|
|
|
|
pip3 install west
|
|
|
|
git config --global user.email "you@example.com"
|
|
|
|
git config --global user.name "Your Name"
|
|
|
|
west init -l . || true
|
|
|
|
|
2020-11-24 22:02:37 +08:00
|
|
|
- name: Manifest
|
2023-10-27 21:41:37 +08:00
|
|
|
uses: zephyrproject-rtos/action-manifest@v1.2.1
|
2020-11-24 22:02:37 +08:00
|
|
|
with:
|
2022-04-02 20:16:31 +08:00
|
|
|
github-token: ${{ secrets.ZB_GITHUB_TOKEN }}
|
2020-11-24 22:02:37 +08:00
|
|
|
manifest-path: 'west.yml'
|
2020-11-28 01:16:36 +08:00
|
|
|
checkout-path: 'zephyrproject/zephyr'
|
2023-09-08 15:39:36 +08:00
|
|
|
use-tree-checkout: 'true'
|
2020-11-24 22:02:37 +08:00
|
|
|
label-prefix: 'manifest-'
|
|
|
|
verbosity-level: '1'
|
2022-11-04 20:10:15 +08:00
|
|
|
labels: 'manifest'
|
2020-11-24 22:02:37 +08:00
|
|
|
dnm-labels: 'DNM'
|