Skip to content

fix: Correct route for deploy action #19

fix: Correct route for deploy action

fix: Correct route for deploy action #19

name: "Pull Request / Edited"
# -----------------------------------------------------------------------------
#
# Fired when a pull request title or body is edited.
#
# -----------------------------------------------------------------------------
on:
pull_request:
types:
- opened
- edited
permissions: {}
jobs:
check:
name: "Maintainer Approval"
runs-on: ubuntu-latest
steps:
- name: Save PR details
env:
PR_NUMBER: ${{ github.event.number }}
PR_SHA: ${{ github.sha }}
run: |
mkdir -p ./pr
echo $PR_NUMBER > ./pr/pr_number
echo $PR_SHA > ./pr/pr_sha
- uses: actions/upload-artifact@v3
with:
name: pr_details
path: pr/
- run: exit 0