forked from kiss-community/repo
kiss: Track maintainers through CI
This commit is contained in:
parent
b257d85104
commit
ffcad57234
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@ -13,3 +13,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
shellcheck */*/build */*/post-install
|
shellcheck */*/build */*/post-install
|
||||||
|
- uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: maintainers
|
||||||
|
path: ./maintainers
|
||||||
|
9
.github/workflows/maintainers
vendored
Executable file
9
.github/workflows/maintainers
vendored
Executable 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
|
Loading…
Reference in New Issue
Block a user