update.yml 356 B

123456789101112131415161718
  1. on:
  2. push:
  3. workflow_dispatch:
  4. schedule:
  5. - cron: '30 0 * * *'
  6. permissions:
  7. contents: write
  8. jobs:
  9. update:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v3
  13. - shell: bash
  14. run: |
  15. git config user.name sirekanian
  16. git config user.email sirekanian@pm.me
  17. ./update.sh
  18. git push