Clean up PR database #5
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: Clean up after after a PR is closed or merged | |
run-name: Clean up PR database | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
delete-db-branch: | |
runs-on: ubuntu-latest | |
environment: CI | |
env: | |
NEON_API_KEY: ${{ secrets.NEON_API_KEY }} | |
NEON_PROJECT_ID: ${{ secrets.NEON_PROJECT_ID }} | |
steps: | |
- name: Get branch name | |
id: branch_name | |
uses: tj-actions/branch-names@v8 | |
- name: Delete Neon Branch | |
uses: neondatabase/delete-branch-action@v3 | |
with: | |
project_id: ${{ secrets.NEON_PROJECT_ID }} | |
branch: pr-${{ github.event.number }}-${{ steps.branch_name.outputs.current_branch }} | |
api_key: ${{ secrets.NEON_API_KEY }} |