-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (50 loc) · 1.74 KB
/
transactional-emails.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
name: Transactional Emails
on:
pull_request:
paths:
- 'infrastructure/transactional-emails/**'
- 'packages/**'
- 'docker-compose.yml'
- 'lambdas/transactional-emails/**'
- 'pnpm-lock.yaml'
- '.github/actions/**'
- '.github/workflows/transactional-emails.yml'
- '.github/workflows/reuse-*.yml'
push:
branches:
- main
- dev
paths:
- 'infrastructure/transactional-emails/**'
- 'packages/**'
- 'lambdas/transactional-emails/**'
- 'pnpm-lock.yaml'
- '.github/actions/**'
- '.github/workflows/transactional-emails.yml'
- '.github/workflows/reuse-*.yml'
jobs:
infrastructure:
uses: ./.github/workflows/reuse-infrastructure.yml
with:
scope: transactional-emails-cdk
stack-output-path: infrastructure/transactional-emails/cdktf.out/stacks/transactional-emails
secrets: inherit
lambda:
uses: ./.github/workflows/reuse-build-and-push-lambda.yml
needs: [infrastructure]
with:
scope: transactional-emails
sentry-project: transactional-emails
s3-bucket-pattern: pocket-transactionalemails-{0}-sqs-event-consumer
codedeploy-app-name-pattern: TransactionalEmails-{0}-Sqs-Event-Consumer-Lambda
codedeploy-group-name-pattern: TransactionalEmails-{0}-Sqs-Event-Consumer-Lambda
function-name-pattern: TransactionalEmails-{0}-Sqs-Event-Consumer-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: transactional-emails
sentry-environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'development' }}
secrets: inherit