spi: zynq: Add Zynq 7000 Quad SPI driver #172501
Workflow file for this run
This file contains hidden or 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: PR Metadata Check | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| contents: read | |
| concurrency: | |
| # Label changes are delivered as one event per label, so a bulk (un)labeling | |
| # spawns several runs at once. Keying the group on the action and the label | |
| # keeps those runs apart so they do not cancel each other and leave this | |
| # required check reported as "cancelled". The label name is empty for the | |
| # push events, which therefore keep sharing a group and still supersede each | |
| # other. | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}-${{ github.event.action }}-${{ github.event.label.name }} | |
| cancel-in-progress: true | |
| jobs: | |
| do-not-merge: | |
| name: Prevent Merging | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| sparse-checkout: | | |
| scripts/ci/do_not_merge.py | |
| scripts/requirements-actions-basic.txt | |
| sparse-checkout-cone-mode: false | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: 3.12 | |
| cache: pip | |
| cache-dependency-path: scripts/requirements-actions-basic.txt | |
| - name: Install Python dependencies | |
| run: | | |
| pip install -r scripts/requirements-actions-basic.txt --require-hashes | |
| - name: Run the check script | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| python -u scripts/ci/do_not_merge.py \ | |
| -p "${{ github.event.pull_request.number }}" \ | |
| -o "${{ github.event.repository.owner.login }}" \ | |
| -r "${{ github.event.repository.name }}" |