-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (50 loc) · 1.59 KB
/
sendgrid-data.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Sendgrid Data
on:
pull_request:
paths:
- 'infrastructure/sendgrid-data/**'
- 'packages/**'
- 'docker-compose.yml'
- 'lambdas/sendgrid-data/**'
- 'pnpm-lock.yaml'
- '.github/actions/**'
- '.github/workflows/sendgrid-data.yml'
- '.github/workflows/reuse-*.yml'
push:
branches:
- main
- dev
paths:
- 'infrastructure/sendgrid-data/**'
- 'packages/**'
- 'lambdas/sendgrid-data/**'
- 'pnpm-lock.yaml'
- '.github/actions/**'
- '.github/workflows/sendgrid-data.yml'
- '.github/workflows/reuse-*.yml'
jobs:
infrastructure:
uses: ./.github/workflows/reuse-infrastructure.yml
with:
scope: sendgrid-data-cdk
stack-output-path: infrastructure/sendgrid-data/cdktf.out/stacks/sendgrid-data
secrets: inherit
lambda:
uses: ./.github/workflows/reuse-build-and-push-lambda.yml
needs: [infrastructure]
with:
scope: sendgrid-data
sentry-project: sendgrid-data
s3-bucket-pattern: pocket-sendgriddata-{0}-apigateway
codedeploy-app-name-pattern: SendGridData-{0}-ApiGateway-Lambda
codedeploy-group-name-pattern: SendGridData-{0}-ApiGateway-Lambda
function-name-pattern: SendGridData-{0}-ApiGateway-Function
secrets: inherit
sentry:
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/main'
uses: ./.github/workflows/reuse-sentry-release.yml
needs: [lambda]
with:
sentry-project: sendgrid-data
sentry-environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'development' }}
secrets: inherit