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 5104baa commit 449eb0dCopy full SHA for 449eb0d
.github/workflows/maintainer-list.yml
@@ -0,0 +1,29 @@
1
+name: maintainer-list
2
+
3
+permissions: read-all
4
5
+on:
6
+ push:
7
+ branches:
8
+ - testing-maintainer-list
9
10
+jobs:
11
+ maintainer-list:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@main
15
+ - name: Set up Python 3.12
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: 3.12
19
+ - name: Install Python dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ python -m pip install -r dist/tools/maintainer-list/requirements.txt
23
+ - name: Update doc/doxygen/src/maintainers.md
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.RIOT_CI_ACCESS_TOKEN }}
26
27
+ ./dist/tools/maintainer-list/maintainer-list.py
28
+ - name: Check maintainers.md
29
+ run: cat doc/doxygen/src/maintainers.md
0 commit comments