Skip to content

Commit

Permalink
chore: add shared GitHub workflows and shared Renovate configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Dec 7, 2023
1 parent e496b52 commit 28d90a8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>dropwizard/renovate-config"
]
}
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Build
# yamllint disable-line rule:truthy
on:
push:
branches:
- release/**
pull_request:
jobs:
yamllint:
uses: dropwizard/workflows/.github/workflows/yamllint.yml@main
build:
strategy:
fail-fast: false
matrix:
java-version: ['11', '17', '21']
uses: dropwizard/workflows/.github/workflows/maven.yml@main
secrets: inherit
with:
java-version: ${{ matrix.java-version }}
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Release
# yamllint disable-line rule:truthy
on:
push:
tags:
- module-parent-*
jobs:
release:
uses: dropwizard/workflows/.github/workflows/release.yml@main
secrets: inherit

0 comments on commit 28d90a8

Please sign in to comment.