-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 935 Bytes
/
build.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
name: Build
on:
workflow_dispatch:
push:
branches:
- 'main'
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE.txt'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
pull_request:
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE.txt'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
concurrency:
group: workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'turing85/run-query' }}
permissions:
actions: write
checks: write
pull-requests: write
jobs:
build:
name: Build
uses: turing85/shared-github-workflows/.github/workflows/turing85-maven-quarkus-single-module-build.yml@main
secrets:
nvd-api-key: ${{ secrets.NVD_API_KEY }}