Add help page for draft formatting and update screenshots #59
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: Build and Deploy PR | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| build-and-deploy-pr: | |
| name: Build and Deploy PR | |
| runs-on: ubuntu-24.04 | |
| environment: preview | |
| steps: | |
| - name: Checkout PR | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
| with: | |
| node-version: 22 | |
| - name: Build the site | |
| run: ./build.sh | |
| - name: Deploy PR to Netlify | |
| run: ./deploy.sh --alias pr-${{ github.event.number }} | |
| env: | |
| NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| NETLIFY_SITE_ID: ${{ vars.NETLIFY_SITE_ID }} | |
| - name: Comment PR with preview URL | |
| uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
| with: | |
| script: | | |
| const prNumber = context.payload.number; | |
| const previewUrl = `https://pr-${prNumber}--sf-help-preview.netlify.app`; | |
| const marker = '<!-- sf-preview-link -->'; | |
| const body = `${marker}\n🚀 **Preview deployed!**\n\nYou can preview this PR at: ${previewUrl}`; | |
| // Find existing comment with marker | |
| const { data: comments } = await github.rest.issues.listComments({ | |
| issue_number: prNumber, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| }); | |
| const alreadyCommented = comments.some(c => c.body && c.body.includes(marker)); | |
| if (!alreadyCommented) { | |
| await github.rest.issues.createComment({ | |
| issue_number: prNumber, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body | |
| }); | |
| } |