Skip to content

dadao

dadao #1441

Workflow file for this run

name: dadao
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-node@v1
- name: Create local changes
run: |
npm install
node ./index.js ${{ secrets.DB_COOKIE }}
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "songjp"
git add .
git commit -m "UPDATE"
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: master
github_token: ${{ secrets.TOKEN }}