-
Notifications
You must be signed in to change notification settings - Fork 10
38 lines (32 loc) · 1.11 KB
/
android-kit-pull-request.yml
File metadata and controls
38 lines (32 loc) · 1.11 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
name: "Android Kit Pull Request Checks"
on:
workflow_call:
inputs:
dryRun:
description: "Do a dry run to preview instead of a real release [true/false]"
required: false
default: "true"
type: string
branch_name:
description: "branch name to run tests on"
required: false
default: "development"
type: string
jobs:
pr-branch-check-name:
name: "Check PR for semantic branch name"
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@main
pr-title-check:
name: "Check PR for semantic title"
uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@main
regression-checks:
name: "Run regression"
uses: mParticle/mparticle-workflows/.github/workflows/android-kit-push.yml@main
with:
dryRun: ${{ inputs.dryRun }}
branch_name: ${{ github.head_ref }}
secrets: inherit
automerge-dependabot:
name: "Save PR Number for Dependabot Automerge"
needs: [ regression-checks ]
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-save-pr-number.yml@main