Skip to content

Cron

Cron #1263

Workflow file for this run

name: Cron
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
update:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
# Update all the providers
- run: ./update.rb
# Check that everything is still working
- run: ./ci.sh
- name: Commit & Push changes
uses: actions-js/[email protected]
with:
branch: 'master'
github_token: ${{ secrets.GITHUB_TOKEN }}