We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fad40e commit 0f9533eCopy full SHA for 0f9533e
.github/workflows/compliance.yml
@@ -3,6 +3,22 @@ name: Compliance
3
on: pull_request
4
5
jobs:
6
+ maintainer_check:
7
+ runs-on: ubuntu-latest
8
+ name: Check MAINTAINERS file
9
+ steps:
10
+ - name: Checkout the code
11
+ uses: actions/checkout@v2
12
+ with:
13
+ ref: ${{ github.event.pull_request.head.sha }}
14
+ fetch-depth: 0
15
+ - name: Run Maintainers Script
16
+ id: maintainer
17
+ env:
18
+ BASE_REF: ${{ github.base_ref }}
19
+ run: |
20
+ python3 ./scripts/get_maintainer.py path CMakeLists.txt
21
+
22
compliance_job:
23
runs-on: ubuntu-latest
24
name: Run compliance checks on patch series (PR)
0 commit comments