mirror of
https://github.com/pezkuwichain/labels.git
synced 2026-04-22 01:57:58 +00:00
35 lines
878 B
YAML
35 lines
878 B
YAML
name: Check label Rules
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
env:
|
|
IMAGE: paritytech/ruled_labels:0.4.0
|
|
|
|
jobs:
|
|
check-label-rules:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
repo: [polkadot-sdk]
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
|
|
- name: Pull image
|
|
run: docker pull $IMAGE
|
|
|
|
- name: Check label Rules for ${{ matrix.repo }}
|
|
env:
|
|
MOUNT: /work
|
|
RULES_PATH: ruled_labels
|
|
run: |
|
|
docker run --rm -i -v $PWD/${RULES_PATH}/:$MOUNT $IMAGE test -s ${MOUNT}/specs_${{ matrix.repo }}.yaml ${MOUNT}/tests_${{ matrix.repo }}.yaml
|