Skip to content

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

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

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

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/