Close Related PAN.DEV PR - (#174) feat: ipsec_tunnel_status check Proxy ID support #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close PR | |
run-name: "Close Related PAN.DEV PR - (#${{ github.event.number }}) ${{ github.event.pull_request.title }}" | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
branches: ['main'] | |
types: ['closed'] | |
jobs: | |
store_pr_details: | |
name: Upload PR details to artifact for closing | |
runs-on: ubuntu-latest | |
steps: | |
- name: save PR details | |
run: | | |
mkdir -p ./pr | |
echo ${{ github.event.number }} > ./pr/NR | |
echo ${{ github.event.pull_request.head.ref }} > ./pr/HEAD_REF | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pr | |
path: pr/ |