-
Notifications
You must be signed in to change notification settings - Fork 14
51 lines (41 loc) · 1.37 KB
/
ci.yml
File metadata and controls
51 lines (41 loc) · 1.37 KB
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
46
47
48
49
50
51
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
branches: [main]
jobs:
pinnedactions:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
uses: ./.github/workflows/pinned-actions.yml
docupdate:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
uses: ./.github/workflows/doc-update.yml
format:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
uses: ./.github/workflows/format.yml
dogfood:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
uses: ./.github/workflows/dogfood.yml
sonarcloud:
uses: ./.github/workflows/sonarcloud.yml
secrets:
sonar-auth-token: ${{ secrets.SONAR_TOKEN }}
performance:
uses: ./.github/workflows/performance.yml
detect-major-version:
uses: ./.github/workflows/detect-major-version.yml
tagversion:
needs: [detect-major-version]
uses: ./.github/workflows/tagversion.yml
with:
custom_tag: ${{ needs.detect-major-version.outputs.custom_tag }}
build:
needs: tagversion
uses: ./.github/workflows/dotnetcore.yml
with:
new_tag: ${{ needs.tagversion.outputs.new_tag }}
new_version: ${{ needs.tagversion.outputs.new_version }}