homebrew-gitea/.gitea/workflows/update.yaml
2023-09-04 12:07:47 +08:00

21 lines
480 B
YAML

name: update
on:
schedule:
- cron: '0 */1 * * *' # every hour
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update
run: ./bump_version.sh
- name: commit
run: |
git config --global user.email "teabot@gitea.io"
git config --global user.name "GiteaBot"
git add --all
git commit -m "[skip ci] Updated Version via cron" || true
git push origin main