Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

.github/workflows/update.yml #168

.github/workflows/update.yml

.github/workflows/update.yml #168

Workflow file for this run

on:
# For the initial commit:
push:
branches:
- master
# For the future releases:
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 "[email protected]"
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 }}