File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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+ run : |
27+ ./dist/tools/maintainer-list/maintainer-list.py
28+ - uses : actions/upload-artifact@v4
29+ with :
30+ path : doc/doxygen/src/maintainers.md
31+ name : maintainers
You can’t perform that action at this time.
0 commit comments