File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Automatic Rebase
2+
3+ on : [pull_request]
4+
5+ jobs :
6+ _ :
7+ name : " Automatic Rebase"
8+
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : ljharb/rebase@master
14+ env :
15+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : update readme TOC
2+
3+ on : [push]
4+
5+ jobs :
6+ _ :
7+ name : " update readme TOC"
8+
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : actions/setup-node@v1
14+ with :
15+ node-version : ' 12.x'
16+ - run : npm install
17+ - run : npm run doctoc
18+ - name : commit changes
19+ uses : ljharb/actions-js-build/commit@v3+amendpush
20+ with :
21+ amend : true
22+ force : true
23+ - uses : ljharb/rebase@master
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments