23 lines
472 B
YAML
23 lines
472 B
YAML
---
|
|
kind: pipeline
|
|
name: python
|
|
|
|
steps:
|
|
- name: badgie
|
|
image: python
|
|
commands:
|
|
- pip install badgie
|
|
- badgie -w README.md
|
|
|
|
- name: update-readme
|
|
image: alpine/git
|
|
environment:
|
|
GIT_SSH_KEY:
|
|
from_secret: gitea_token
|
|
commands:
|
|
- git config user.name "sthope"
|
|
- git config user.email "rjs.ricardosilva@gmail.com"
|
|
- git add README.md
|
|
- git commit -m "Update README.md 🐦"
|
|
- git push origin main
|