add tools from ppr
This commit is contained in:
parent
0412d8a319
commit
7b4774e1bf
3 changed files with 50 additions and 0 deletions
3
.github/CODEOWNERS
vendored
Normal file
3
.github/CODEOWNERS
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# As per https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#example-of-a-codeowners-file
|
||||||
|
|
||||||
|
* @bsslinux @mmdbalkhi
|
33
.github/workflows/auto-gen.yml
vendored
Normal file
33
.github/workflows/auto-gen.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
|
||||||
|
name: Auto-gen
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'IRIP/img/*/*'
|
||||||
|
- 'auto-gen.py'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '*.tar.zst'
|
||||||
|
- 'auto_gen.py'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
add-actions:
|
||||||
|
name: gen-readme
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: "3.10"
|
||||||
|
|
||||||
|
- run: git config --global user.name "readme-gen"
|
||||||
|
- run: git config --global user.email "<>"
|
||||||
|
- run: python auto-gen.py
|
||||||
|
- run: git add README.md
|
||||||
|
- run: git commit -m "auto generate README.md" || echo "nothing to commit, working tree clean"; exit 0
|
||||||
|
- run: git push
|
14
repoadd.sh
Executable file
14
repoadd.sh
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#set -x
|
||||||
|
|
||||||
|
if [ "$1" == "" ];then
|
||||||
|
echo "repoadd.sh <repo_name>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd x86_64
|
||||||
|
repo-add $1.db.tar.gz *pkg.tar.zst
|
||||||
|
|
||||||
|
mv $1.files.tar.gz ppr.files
|
||||||
|
mv $1.db.tar.gz ppr.db
|
Loading…
Add table
Reference in a new issue