update.yml 359 B

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