Skip to content

Cronjob update

Cronjob update #12566

Workflow file for this run

name: Cronjob update
on:
schedule:
# run every 10 minutes
- cron: '*/10 * * * *'
workflow_dispatch: {}
defaults:
run:
shell: bash
jobs:
cronjob_update:
name: Cronjob update
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run update
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
./run.sh