drivers: flash: stm32 xspi and ospi: early init exit for memap mode #105257
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manifest | |
on: | |
pull_request_target: | |
jobs: | |
contribs: | |
runs-on: ubuntu-22.04 | |
name: Manifest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
with: | |
path: zephyrproject/zephyr | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: west setup | |
env: | |
BASE_REF: ${{ github.base_ref }} | |
working-directory: zephyrproject/zephyr | |
run: | | |
pip install west | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
west init -l . || true | |
- name: Manifest | |
uses: zephyrproject-rtos/[email protected] | |
with: | |
github-token: ${{ secrets.ZB_GITHUB_TOKEN }} | |
manifest-path: 'west.yml' | |
checkout-path: 'zephyrproject/zephyr' | |
use-tree-checkout: 'true' | |
check-impostor-commits: 'true' | |
label-prefix: 'manifest-' | |
verbosity-level: '1' | |
labels: 'manifest' | |
dnm-labels: 'DNM' |