Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Bump aws-sdk from 2.897.0 to 2.1421.0 #552

Bump aws-sdk from 2.897.0 to 2.1421.0

Bump aws-sdk from 2.897.0 to 2.1421.0 #552

Workflow file for this run

# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
name: Build
on:
pull_request: {}
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
env:
CI: "true"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Install dependencies
run: yarn install --check-files --frozen-lockfile
- name: Set git identity
run: |-
git config user.name "Automation"
git config user.email "[email protected]"
- name: Build
run: npx projen build
- name: Commit and push changes (if any)
run: 'git diff --exit-code || (git commit -am "chore: self mutation" && git push
origin HEAD:${{ github.event.pull_request.head.ref }})'
- if: ${{ github.repository == github.event.pull_request.head.repo.full_name }}
name: Update status check
run: gh api -X POST /repos/${{ github.event.pull_request.head.repo.full_name
}}/check-runs -F name="build" -F head_sha="$(git rev-parse HEAD)" -F
status="completed" -F conclusion="success"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}