File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+ version : 2
4+ updates :
5+ - package-ecosystem : ' github-actions'
6+ directory : ' /'
7+ schedule :
8+ interval : ' weekly'
9+ day : ' saturday'
10+ labels : [ 'dependencies' ]
11+ commit-message :
12+ prefix : ' chore' # # prefix maximum string length of 15
13+ include : ' scope'
14+ open-pull-requests-limit : 999
Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212
1313 steps :
14- - uses : actions/checkout@v2
14+ - name : Checkout
15+ # see https://github.com/actions/checkout
16+ uses : actions/checkout@v2
1517 - name : Set up JDK 1.8
18+ # see https://github.com/actions/setup-java
1619 uses : actions/setup-java@v1
1720 with :
1821 java-version : 1.8
@@ -36,11 +39,13 @@ jobs:
3639 cd docgen/xml
3740 ./gen.sh
3841 - name : Archive JSON Schema documentation
42+ # https://github.com/actions/upload-artifact
3943 uses : actions/upload-artifact@v2
4044 with :
4145 name : JSON-Schema-documentation
4246 path : docgen/json/docs
4347 - name : Archive XML Schema documentation
48+ # https://github.com/actions/upload-artifact
4449 uses : actions/upload-artifact@v2
4550 with :
4651 name : XML-Schema-documentation
You can’t perform that action at this time.
0 commit comments