This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
Fix group block width for news blog home. #597
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: Preview Theme Changes | |
on: | |
pull_request_target: | |
types: [opened, synchronize] | |
permissions: | |
pull-requests: write | |
jobs: | |
preview-theme-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Preview Theme Changes | |
uses: WordPress/action-wp-playground-pr-preview@trunk | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
ref: ${{ github.event.pull_request.head.sha }} | |
base-branch: trunk | |
single-theme: true | |
wp-version: "nightly" | |
php-version: "8.0" |