Skip to content

Green Commit

Green Commit #4967

Workflow file for this run

name: Green Commit
on:
push:
branches:
- master
schedule:
- cron: "0 */6 * * *"
jobs:
auto-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Run Bot Task
run: |
chmod +x ./task.sh
./task.sh
- name: GitHub Push
uses: ad-m/github-push-action@v0.6.0
with:
force: true
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}