Skip to content

ci

ci #28736

Workflow file for this run

name: ci
on:
push:
branches:
- main
schedule:
- cron: '*/28 8-20 * * *'
jobs:
autogreen:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Auto green
run: |
git config --local user.email "[email protected]"
git config --local user.name "ShermanQ"
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git pull --rebase
git commit --allow-empty -m "MakeUGreenAgain"
git push