-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 902 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
name: Continuous Integration
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
pull_request_target:
types: [ opened, synchronize, reopened, ready_for_review ]
concurrency:
group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pipeline:
strategy:
fail-fast: false
matrix:
service: [ spring-starter ]
uses: yonatankarp/github-actions/.github/workflows/ci.yml@v1
with:
app_name: ${{ matrix.service }}
dependabot_auto_merge:
needs: pipeline
if: ${{ github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]' }}
uses: yonatankarp/github-actions/.github/workflows/dependabot-auto-merge.yml@v1
secrets:
GITHUB_PAT: ${{ secrets.REVIEWER_GITHUB_TOKEN }}
linters:
uses: yonatankarp/github-actions/.github/workflows/linters.yml@v1