fix(tables): tab causing indent in last table cell (BLO-1211) #10
Workflow file for this run
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: pr-preview-cleanup | |
| # Removes the GitHub Pages e2e-report preview that `build.yml`'s `deploy-report` | |
| # job published for a PR, once that PR is closed/merged. Kept separate from | |
| # `build.yml` so closing a PR doesn't re-run the whole build + e2e suite. | |
| on: | |
| pull_request: | |
| types: [closed] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| remove-preview: | |
| name: "Remove E2E Report Preview" | |
| runs-on: ubuntu-latest | |
| # Fork PRs never got a preview (read-only token), so nothing to remove. | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Remove PR preview | |
| uses: rossjrw/pr-preview-action@ffa7509e91a3ec8dfc2e5536c4d5c1acdf7a6de9 # v1 | |
| with: | |
| preview-branch: gh-pages | |
| umbrella-dir: pr-preview | |
| action: remove |