Commit 7873076f authored by Frago9876543210's avatar Frago9876543210 Committed by ArthurSonzogni
Browse files

Auto update using github actions

parent 29433267
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
on:
  schedule:
    - cron:  '0 0 * * 0' #every week

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
      with:
        persist-credentials: false
        fetch-depth: 0
    - name: Commit files
      run: |
        git config --local user.email "action@github.com"
        git config --local user.name "GitHub Actions"
        ./update.py
    - name: Push changes
      uses: ad-m/github-push-action@master
      with:
        github_token: ${{ secrets.GITHUB_TOKEN }}