-
Notifications
You must be signed in to change notification settings - Fork 13
37 lines (30 loc) · 1 KB
/
pull-request.yml
File metadata and controls
37 lines (30 loc) · 1 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
name: "Build and Test"
on: [ push, workflow_dispatch, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
checks: write
id-token: write
jobs:
higgs-shop-sample-app:
name: "Check Higgs Shop Sample App"
uses: ./.github/workflows/pull-request-app-checks.yml
with:
app_relative_path: "core-sdk-samples/higgs-shop-sample-app"
automerge-dependabot:
name: "Save PR Number for Dependabot Automerge"
needs: [ higgs-shop-sample-app ]
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-save-pr-number.yml@main
pr-notify:
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.draft == false
needs:
- higgs-shop-sample-app
name: Notify GChat
uses: ROKT/rokt-workflows/.github/workflows/oss_pr_opened_notification.yml@main
secrets:
gchat_webhook: ${{ secrets.GCHAT_PRS_WEBHOOK }}