feat: add dependabot support #18
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: 'review-app-cleanup' | |
# yamllint disable-line rule:truthy | |
on: | |
# onl run this workflow on pull request events | |
pull_request: | |
types: | |
- closed | |
jobs: | |
destroy_review_app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Destroy the review app | |
uses: dokku/github-action@master | |
with: | |
# destroy a review app | |
command: review-apps:destroy | |
git_remote_url: 'ssh://[email protected]/nginx-buildpack' | |
# specify a name for the review app | |
review_app_name: nginx-buildpack-${{ github.event.pull_request.number }} | |
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} |