Remove the 'I want to use PHP for' line from download instruction generation #518
This file contains hidden or 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: Remove preview PR | |
| on: | |
| pull_request_target: | |
| types: [ closed ] | |
| jobs: | |
| build: | |
| runs-on: "ubuntu-22.04" | |
| if: github.repository_owner == 'php' | |
| steps: | |
| - uses: appleboy/ssh-action@v1.2.5 | |
| with: | |
| host: ${{ secrets.PREVIEW_REMOTE_HOST }} | |
| username: ${{ secrets.PREVIEW_REMOTE_USER }} | |
| key: ${{ secrets.PREVIEW_SSH_KEY }} | |
| script: | | |
| bash /home/thephpfoundation/scripts/pr_closed.sh web-php ${{ github.event.number }} | |
| bash /home/thephpfoundation/scripts/pr_closed.sh web-php-regression-report ${{ github.event.number }} |