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 e81ffcf commit deb0ab5Copy full SHA for deb0ab5
.github/workflows/maintainer_check.yml
@@ -30,7 +30,11 @@ jobs:
30
run: |
31
pip install -r scripts/requirements-actions.txt --require-hashes
32
33
+ - name: Fetch MAINTAINERS.yml from mainline
34
+ run: |
35
+ git fetch origin main
36
+ git show origin/main:MAINTAINERS.yml > mainline_MAINTAINERS.yml
37
+
38
- name: Check maintainer file changes
39
- git show ${{ github.event.pull_request.base.sha }}:MAINTAINERS.yml > old_MAINTAINER.yml
- python ./scripts/check_maintainer_changes.py --repo zephyrproject-rtos/zephyr old_MAINTAINER.yml MAINTAINERS.yml
40
+ python ./scripts/check_maintainer_changes.py --repo zephyrproject-rtos/zephyr mainline_MAINTAINERS.yml MAINTAINERS.yml
0 commit comments