Skip to content

chore(deps): Bump dyn-clone from 1.0.14 to 1.0.16 #14

chore(deps): Bump dyn-clone from 1.0.14 to 1.0.16

chore(deps): Bump dyn-clone from 1.0.14 to 1.0.16 #14

name: Call Build Preview
on:
pull_request:
types: [opened, reopened]
jobs:
approval_check:
runs-on: ubuntu-latest
steps:
- name: Echo approval
run: |
echo "Workflow has been allowed to run for PR ${{ github.event.number }}. Setting artifacts and then continuing workflow runs"
# Save the PR number and branch name to an artifact for use in subsequent jobs
- name: Save PR number and Branch name
run: |
mkdir -p ./pr
echo "PR Number: ${{ github.event.number }}" > ./pr/PR_INFO
echo "Branch Name: ${{ github.head_ref }}" >> ./pr/PR_INFO
# Upload the artifact
- name: Upload PR information artifact
uses: actions/upload-artifact@v2
with:
name: pr
path: pr/