Skip to content

Commit 1250bff

Browse files
authored
Add dependabot and release drafter configuration (#26)
* Add gh actions, dependabot and release drafter Signed-off-by: olivier lamy <[email protected]> * get rid of travis Signed-off-by: olivier lamy <[email protected]>
1 parent a1a1451 commit 1250bff

File tree

4 files changed

+24
-26
lines changed

4 files changed

+24
-26
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/release-drafter.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_extends: .github
2+
tag-template: plexus-interpolation-$NEXT_MINOR_VERSION

.github/workflows/release-drafter.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release Drafter
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
update_release_draft:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: release-drafter/[email protected]
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

-26
This file was deleted.

0 commit comments

Comments
 (0)