8000 fix(deps): update mend: high confidence minor and patch dependency updates · snowdensb/aws-lambda-powertools-python@16f2837 · GitHub
[go: up one dir, main page]

Skip to content

fix(deps): update mend: high confidence minor and patch dependency updates #111

fix(deps): update mend: high confidence minor and patch dependency updates

fix(deps): update mend: high confidence minor and patch dependency updates #111

Workflow file for this run

name: Record PR number
on:
pull_request:
types: [opened, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/number
echo "${{ github.event.pull_request.title }}" > ./pr/title
echo "${{ github.event.pull_request.body }}" > ./pr/body
echo "${{ github.event.pull_request.user.login }}" > ./pr/author
echo "${{ github.event.action }}" > ./pr/action
- uses: actions/upload-artifact@v3
with:
name: pr
path: pr/
0