Skip to content

Commit 6a374ed

Browse files
authored
chore: add dependabot for github actions (#314)
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent fd4d383 commit 6a374ed

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

.github/workflows/cibuild.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ jobs:
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

0 commit comments

Comments
 (0)