Skip to content

scheduler

scheduler #34

Workflow file for this run

name: scheduler
on:
schedule:
- cron: '0 0 1,11,21 * *'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
push_commit:
name: commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git config user.name github-actions
git config user.email [email protected]
git commit --allow-empty -m "`date`"
git push