This gitHub action deletes a new Neon branch.
Here is an example of how to use it:
name: Delete Neon Branch with GitHub Actions Demo
run-name: Delete a Neon Branch 🚀
on: [push]
jobs:
delete-neon-branch:
uses: neondatabase/delete-branch-action.yml@beta
with:
project_id: rapid-haze-373089
branch_id: br-long-forest-224191
api_key: {{ secrets.NEON_API_KEY }}
Navigate to you the Account page on your Neon console. In the Developer Settings, Generate a new API key if you don't have one already. It's important not to share the API key or expose it in your actions or code. This is why you need to add the API key to a new GitHub secret.
In your GitHub repo, go to Settings
and and locate Secrets
at the bottom of the left side bar. Click on Actions
then on the New repository secret
button to create a new secret.
Name the secret NEON_API_KEY
and paste the API key generated on the Neon console in the Secret*
field, then press Add secret
button.