-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 1023 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CI workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
cache: maven
- name: Build with Maven
run: ./mvnw -DskipTests package
automerge:
needs: [build]
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
merge-comment: "Merged automatically by Planet CI."
skip-commit-verification: true
skip-verification: true
codeql-workflow:
needs: [build]
uses: ./.github/workflows/codeql.yml
secrets: inherit
containers:
needs: [codeql-workflow]
uses: ./.github/workflows/containers.yml
secrets: inherit