-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (38 loc) · 1.24 KB
/
pr.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
name: 🔄 Pull Request
on:
pull_request:
branches:
- main
- next
- next-major
- beta
- alpha
- rc-*
jobs:
call-worflow-depcheck:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'}}
name: 🔍🔗 Check Dependencies
uses: ./.github/workflows/depcheck.yml
call-worflow-docs:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'}}
name: 📝 Creating Documentation
uses: ./.github/workflows/docs.yml
call-worflow-lint:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'}}
name: 🧹 Linting
uses: ./.github/workflows/lint.yml
secrets:
token: ${{ secrets.github_token }}
call-worflow-build:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'}}
name: 🏗️ Building
needs: call-worflow-lint
uses: ./.github/workflows/build.yml
call-worflow-test:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'}}
name: 🧪 Testing
needs: call-worflow-build
uses: ./.github/workflows/test.yml
secrets:
token: ${{ secrets.CODECOV_TOKEN }}
rootpass: ${{ secrets.ROOTPASSWORD }}