Show Intrinsic for randomized-intrinsic weapons in Item Feed (Ergo Sum, crafted intrinsics) #326
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: PR Cleanup | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
# Remove the preview build directory | |
cleanup: | |
runs-on: ubuntu-latest | |
environment: pr | |
if: ${{github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'}} | |
steps: | |
- name: Install SSH key | |
uses: benoitchantre/[email protected] | |
with: | |
private-key: ${{ secrets.SSH_KEY }} | |
private-key-name: dim.rsa | |
known-hosts: ${{ secrets.REMOTE_HOST }} | |
- name: Delete preview build | |
run: ssh -i ~/.ssh/dim.rsa -o StrictHostKeyChecking=no ${{secrets.REMOTE_USER}}@${{secrets.REMOTE_HOST}} "rm -rf pr.destinyitemmanager.com/${{ github.event.number }}" |