Skip to content

Commit

Permalink
GitHub: Update stats-lambda.yml with dynamic credentials (awsdocs#6583)
Browse files Browse the repository at this point in the history
  • Loading branch information
brmur authored Jun 26, 2024
1 parent 969b005 commit 371d23e
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/stats-lambda.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# This workflow executes a Lamdba function that records metrics for each successfully merged PR.
# This workflow executes a Lamdba function that records metrics for each merged PR.
#
# For more information, see:
# https://github.com/marketplace/actions/invoke-aws-lambda

name: Trigger Lambda to capture metrics

permissions:
contents: read
id-token: write

on: # yamllint disable-line rule:truthy
pull_request:
types:
Expand All @@ -12,20 +17,29 @@ on: # yamllint disable-line rule:truthy
env:
COMMIT: ${{github.event.pull_request.head.sha}}
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
AWS_REGION: "eu-west-1"
jobs:
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
name: GitHub Statistics
steps:
- name: Configure AWS Credentials
id: creds
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{env.AWS_REGION}}
role-to-assume: arn:aws:iam::959731285276:role/run-the-numbers-lambda
output-credentials: true
- name: Create payload
run: echo "JSON_PAYLOAD={\"commit\" :\"${{ env.COMMIT }}\",\"author\" :\"${{ env.PR_AUTHOR }}\"}" >> $GITHUB_ENV
- name: Invoke Lambda
uses: gagoar/invoke-aws-lambda@master
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
REGION: 'eu-west-1'
AWS_ACCESS_KEY_ID: ${{ steps.creds.outputs.aws-access-key-id }}
AWS_SECRET_ACCESS_KEY: ${{ steps.creds.outputs.aws-secret-access-key }}
AWS_SESSION_TOKEN: ${{ steps.creds.outputs.aws-session-token }}
REGION: ${{env.AWS_REGION}}
FunctionName: runTheNumbers
Payload: ${{env.JSON_PAYLOAD}}
InvocationType: RequestResponse
Expand Down

0 comments on commit 371d23e

Please sign in to comment.