2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-03 00:20:09 -07:00

kiss: Track maintainers through CI

This commit is contained in:
Dylan Araps 2020-01-23 18:34:00 +02:00
parent b257d85104
commit ffcad57234
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
2 changed files with 13 additions and 0 deletions

View File

@ -13,3 +13,7 @@ jobs:
run: |
shopt -s nullglob
shellcheck */*/build */*/post-install
- uses: actions/upload-artifact@v1
with:
name: maintainers
path: ./maintainers

9
.github/workflows/maintainers vendored Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh -e
for file in */*/version; do
pkg=${file%/*}
# author=$(git log -1 --format="tformat:%an %ae" "$file")
author="Dylan Araps dylan.araps@gmail.com"
printf '%s\t%s\n' "$pkg" "$author"
done > maintainers