# Each PR will build preview site that help to check code is work as expect. name: Preview Deploy on: workflow_run: workflows: ["Preview Build"] types: - completed jobs: deploy-site: name: deploy preview runs-on: ubuntu-latest if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' steps: # We need get PR id first - name: download pr artifact uses: dawidd6/action-download-artifact@v2 with: workflow: ${{ github.event.workflow_run.workflow_id }} name: pr # Save PR id to output - name: save PR id id: pr run: echo "::set-output name=id::$(](https://preview-${{ steps.pr.outputs.id }}-ant-design.surge.sh) body-include: '' number: ${{ steps.pr.outputs.id }} - name: The job has failed if: ${{ failure() }} uses: actions-cool/maintain-one-comment@v1.1.0 with: token: ${{ secrets.GITHUB_TOKEN }} body: | body-include: '' number: ${{ steps.pr.outputs.id }} build-site-failed: name: build preview failed runs-on: ubuntu-latest if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'failure' steps: # We need get PR id first - name: download pr artifact uses: dawidd6/action-download-artifact@v2 with: workflow: ${{ github.event.workflow_run.workflow_id }} name: pr # Save PR id to output - name: save PR id id: pr run: echo "::set-output name=id::$( body-include: '' number: ${{ steps.pr.outputs.id }}