Skip to content

Always correct hunk header line count. #17

Always correct hunk header line count.

Always correct hunk header line count. #17

Workflow file for this run

name: hiroshi-dev branch staging deployment
on:
push:
branches:
- 'hiroshi*'
jobs:
deploy_lambda:
name: Publish and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: AKIA5ZOUUDPV4JSVHC5U
aws-secret-access-key: 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
aws-region: us-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: pr-agent-hiroshi
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -f ./Dockerfile -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Update Lambda function with latest ECR image
env:
LAMBDA_NAME: pr-agent-hiroshi
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: pr-agent-hiroshi
IMAGE_TAG: ${{ github.sha }}
run: |
aws lambda update-function-code \
--function-name $LAMBDA_NAME \
--image-uri $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Execute Slack Webhook
if: always()
run: |
curl -X POST https://hooks.slack.com/workflows/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