File tree Expand file tree Collapse file tree 3 files changed +24
-33
lines changed Expand file tree Collapse file tree 3 files changed +24
-33
lines changed Original file line number Diff line number Diff line change 10
10
- main
11
11
- master
12
12
jobs :
13
+ toc :
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+
19
+ - name : Generate TOC
20
+ run : |
21
+ npm install -g doctoc
22
+ doctoc README.md
23
+
24
+ - name : Commit changes
25
+ run : |
26
+ git config --global user.name "github-actions"
27
+ git config --global user.email "[email protected] "
28
+ git add README.md
29
+ git commit -m "Auto update TOC" || exit 0
30
+ git push
31
+ env :
32
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
13
33
Awesome_Lint :
14
34
runs-on : ubuntu-latest
35
+ needs : toc
15
36
steps :
16
37
- uses : actions/checkout@v2
17
38
with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 65
65
- [ Unofficial devcontainer CLI in go] ( https://github.com/stuartleeks/devcontainer-cli )
66
66
- [ vscli] ( https://github.com/michidk/vscli ) - Unofficial CLI for VS Code.
67
67
- [ tyedev] ( https://github.com/CodeMan99/tyedev ) - A tool to generate ` devcontainer.json ` files for your projects.
68
- - [ GitHub CodeSpaces] ( https://github.com/codespaces ) - GitHub CodeSpaces
69
- - [ devpod.sh] ( https://devpod.sh ) - CodeSpaces but Open Source
68
+ - [ GitHub CodeSpaces] ( https://github.com/codespaces ) - GitHub CodeSpaces.
69
+ - [ devpod.sh] ( https://devpod.sh ) - CodeSpaces but Open Source.
70
70
71
71
## Other tools for working with standadized development environments
72
72
73
- - [ devenv] ( https://devenv.sh ) - Create Development environments based on Nix
73
+ - [ devenv] ( https://devenv.sh ) - Create Development environments based on Nix.
74
74
75
75
You can’t perform that action at this time.
0 commit comments