Skip to content

ci

ci #10818

Workflow file for this run

name: ci
on:
push:
branches:
- main
schedule:
- cron: "* * * * *"
jobs:
autogreen:
if: github.repository == 'justoneapi/justoneapi-python'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Auto commit
run: |
git config --local user.name "Anonymous Committer"
git config --local user.email "[email protected]"
git commit --allow-empty -m "chore: auto empty commit at $(date)"
git push