File tree 2 files changed +24
-1
lines changed
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 30
30
github-token : ${{ secrets.GITHUB_TOKEN }}
31
31
# Maintenance: convert into a standalone JS like post_release.js
32
32
script : |
33
- const prBody = ${{ needs.get_pr_details.outputs.prBody }};
33
+ const prBody = " ${{ needs.get_pr_details.outputs.prBody }}" ;
34
34
const prNumber = ${{ needs.get_pr_details.outputs.prNumber }};
35
35
const blockLabel = process.env.BLOCK_LABEL;
36
36
const blockReasonLabel = process.env.BLOCK_REASON_LABEL;
Original file line number Diff line number Diff line change
1
+ AWSTemplateFormatVersion : " 2010-09-09"
2
+ Transform : AWS::Serverless-2016-10-31
3
+ Description : AWS Lambda Powertools Tracer doc examples
4
+
5
+ Globals :
6
+ Function :
7
+ Timeout : 5
8
+ Runtime : python3.9
9
+ Tracing : Active
10
+ Environment :
11
+ Variables :
12
+ POWERTOOLS_SERVICE_NAME : example
13
+ Layers :
14
+ # Find the latest Layer version in the official documentation
15
+ # https://awslabs.github.io/aws-lambda-powertools-python/latest/#lambda-layer
16
+ - !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:21
17
+
18
+ Resources :
19
+ CaptureLambdaHandlerExample :
20
+ Type : AWS::Serverless::Function
21
+ Properties :
22
+ CodeUri : src
23
+ Handler : capture_lambda_handler.handler
You can’t perform that action at this time.
0 commit comments