Skip to content

Create run.sh

Create run.sh #3659

Workflow file for this run

name: ci
on:
push:
branches:
- main
jobs:
autogreen:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Auto green
run: |
git config --local user.email "literature1204@gmail.com"
git config --local user.name "LiteraturePro"
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git pull --rebase
git commit --allow-empty -m "a commit a day keeps your girlfriend away"
git push